forked from inkonchain/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
37 lines (37 loc) · 996 Bytes
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: [
'./src/**/*.{js,jsx,ts,tsx,md,mdx}',
'./theme.config.tsx'
],
theme: {
extend: {
borderRadius: {
'4xl': '2rem',
'5xl': '2.5rem',
'6xl': '3rem', // This is a very large radius
},
colors: {
magic: {
purple: "#7132F5",
'semi-deep-purple': '#855BFB',
'deep-purple': "#2B1463",
black: "#101114",
white: "#F0EFFF",
'soft-pink': "#F7D2FE",
'link-purple': '#B794FF',
},
'ink-grey': {
100: '#F3F4F6',
400: '#6B7280',
700: '#374151',
},
},
fontFamily: {
sans: ['var(--font-plus-jakarta-sans)', 'var(--font-inter)', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Helvetica', 'Apple Color Emoji', 'Arial', 'sans-serif', 'Segoe UI Emoji', 'Segoe UI Symbol'],
},
},
},
plugins: [],
}