-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathtailwind.config.js
65 lines (60 loc) · 1.61 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
** TailwindCSS Configuration File
**
** Docs: https://tailwindcss.com/docs/configuration
** Default: https://github.com/tailwindcss/tailwindcss/blob/master/stubs/defaultConfig.stub.js
*/
module.exports = {
darkMode: 'class',
content: [
'src/components/**/*.vue',
'src/components/**/*.astro',
'src/layouts/**/*.vue',
'src/layouts/**/*.astro',
'src/pages/**/*.mdx',
'src/pages/**/*.astro',
],
theme: {
fontFamily: {
display: ['Montserrat', 'sans-serif'],
body: ['Atkinson-Hyperlegible', 'Segoe UI', 'Tahoma', 'Geneva', 'Verdana', 'sans-serif'],
ui: ['Noto Sans', 'Segoe UI', 'Tahoma', 'Geneva', 'Verdana', 'sans-serif'],
mono: [
'ui-monospace',
'SFMono-Regular',
'Menlo',
'Monaco',
'Consolas',
'Liberation Mono',
'Courier New',
'monospace',
],
},
extend: {
colors: {
'accent-900': '#009f53',
'accent-800': 'var(--accent, #06d77b)',
'accent-100': '#7bffc5',
warning: '#ffa629',
error: '#cf6679',
black: '#000',
white: '#fff',
'gray-800': '#151518',
'gray-700': 'hsl(240 6% 9%)',
'gray-600': '#333',
'gray-500': 'hsl(0 0% 29%)',
'gray-400': '#a2a2a2',
'gray-300': 'hsl(0 0% 74%)',
'gray-200': '#e8e8e8',
'gray-100': '#f6f6f6',
'dracula-selection': '#454158',
background: '#22212C',
dark: 'hsl(240 6% 9%)',
carbon: '#333',
},
screens: {
motion: { raw: '(prefers-reduced-motion: no-preference)' },
},
},
},
};