-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
65 lines (59 loc) · 1.4 KB
/
tailwind.config.cjs
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
module.exports = {
mode: "jit",
purge: [
"./src/**/*.{html,js,svelte,ts}",
],
theme: {
fontFamily: {
sans: [
'Raleway', '"Open Sans"', 'system-ui', '-apple-system', 'BlinkMacSystemFont', '"Segoe UI"', 'Roboto', 'Oxygen-Sans',
'Ubuntu', 'Cantarell', '"Helvetica Neue"', 'sans-serif', '"Noto Sans"', 'sans-serif',
'"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"'
]
},
colors: {
'transparent': 'none',
'white': '#ffffff',
'gray-lightest': '#faf9f8',
'gray-lighter': '#e6e5e4',
'gray-light': '#d2d1d0',
'gray': '#c0bfbd',
'gray-dark': '#989796',
'gray-darker': '#706f6e',
'gray-darkest': '#4a4948',
'black': '#222120',
'brand-light': '#fbe3c6',
'brand': '#d4950d',
'brand-dark': '#664914',
'cta-light': '#d3ebf4',
'cta': '#0db0d4',
'cta-dark': '#1f5564',
'info-light': '#e2f3f4',
'info': '#86ced2',
'info-dark': '#436263',
'warning-light': '#fff2cb',
'warning': '#f7ce04',
'warning-dark': '#756218',
'success-light': '#e1f8d0',
'success': '#73de3a',
'success-dark': '#3c6924',
'danger-light': '#ffd6cc',
'danger': '#f7513d',
'danger-dark': '#762d22',
},
extend: {
rotate: {
360: '360deg',
},
transitionTimingFunction: {
spring: 'cubic-bezier(0.45, -0.7, 0.62, 1.71)',
},
},
},
variants: {
extend: {
cursor: ['hover', 'focus'],
}
},
plugins: [],
};