-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.ts
94 lines (90 loc) · 2.26 KB
/
tailwind.config.ts
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
import typography from '@tailwindcss/typography';
import forms from '@tailwindcss/forms';
import type { Config } from 'tailwindcss'
import defaultTheme from 'tailwindcss/defaultTheme'
export default <Partial<Config>>{
darkMode: 'class',
theme: {
fontFamily: {
serif: defaultTheme.fontFamily.serif,
sans: defaultTheme.fontFamily.sans,
/* In CSS: font-family: theme('fontFamily.brand'); */
brand: ['Zilla Slab', ...defaultTheme.fontFamily.serif],
mono: defaultTheme.fontFamily.mono,
},
extend: {
colors: {
// https://javisperez.github.io/tailwindcolorshades/?flamingo=dc4a22&guardsman-red=23b5dd
brand: {
50: '#fcf8f2',
100: '#fcf4e8',
200: '#f7dec3',
300: '#f0c39e',
400: '#e68b5e',
500: '#dc4a22',
600: '#c43d1b',
700: '#a32d12',
800: '#85200c',
900: '#631507',
950: '#400b03',
},
branddim: {
50: '#fcf8f2',
100: '#faf0e3',
200: '#f0d7bd',
300: '#e8bb99',
400: '#d67e56',
500: '#c43d1b',
600: '#b03317',
700: '#94270f',
800: '#751b09',
900: '#591205',
950: '#380902',
},
brandcomp: {
50: '#f2fbfc',
100: '#e8fafc',
200: '#c3f0f7',
300: '#a0e6f2',
400: '#5fcfe8',
500: '#23b5dd',
600: '#1c9cc7',
700: '#1478a6',
800: '#0d5985',
900: '#073b63',
950: '#032140',
},
brandcompdim: {
50: '#f2fbfc',
100: '#e3f7fa',
200: '#bfebf2',
300: '#99dae8',
400: '#57bdd9',
500: '#1c9cc7',
600: '#1786b3',
700: '#0f6594',
800: '#0a4c78',
900: '#053359',
950: '#021e3b',
},
midnight: {
50: '#e9f2f5',
100: '#d8e7ed',
200: '#9dbfcf',
300: '#6f9bb3',
400: '#2a577a',
500: '#032140',
600: '#031e3b',
700: '#021630',
800: '#011026',
900: '#010b1c',
950: '#000612',
},
},
},
},
plugins: [
forms(),
typography(),
],
}