-
Notifications
You must be signed in to change notification settings - Fork 108
/
tailwind.config.js
127 lines (126 loc) · 3.76 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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
module.exports = {
theme: {
// generated from @blueprintjs/core v5 colors
// curl -s https://raw.githubusercontent.com/palantir/blueprint/develop/packages/colors/src/_colors.scss \
// | grep '^\$' \
// | sed 's/\$\(.*\): \([#0-9a-f]*\).*/ '"'\1': '\2',/"
colors: {
'transparent': 'transparent',
'current': 'currentColor',
'black': '#111418',
'dark-gray1': '#1c2127',
'dark-gray2': '#252a31',
'dark-gray3': '#2f343c',
'dark-gray4': '#383e47',
'dark-gray5': '#404854',
'gray1': '#5f6b7c',
'gray2': '#738091',
'gray3': '#8f99a8',
'gray4': '#abb3bf',
'gray5': '#c5cbd3',
'light-gray1': '#d3d8de',
'light-gray2': '#dce0e5',
'light-gray3': '#e5e8eb',
'light-gray4': '#edeff2',
'light-gray5': '#f6f7f9',
'white': '#ffffff',
'blue1': '#184a90',
'blue2': '#215db0',
'blue3': '#2d72d2',
'blue4': '#4c90f0',
'blue5': '#8abbff',
'green1': '#165a36',
'green2': '#1c6e42',
'green3': '#238551',
'green4': '#32a467',
'green5': '#72ca9b',
'orange1': '#77450d',
'orange2': '#935610',
'orange3': '#c87619',
'orange4': '#ec9a3c',
'orange5': '#fbb360',
'red1': '#8e292c',
'red2': '#ac2f33',
'red3': '#cd4246',
'red4': '#e76a6e',
'red5': '#fa999c',
'vermilion1': '#96290d',
'vermilion2': '#b83211',
'vermilion3': '#d33d17',
'vermilion4': '#eb6847',
'vermilion5': '#ff9980',
'rose1': '#a82255',
'rose2': '#c22762',
'rose3': '#db2c6f',
'rose4': '#f5498b',
'rose5': '#ff66a1',
'violet1': '#5c255c',
'violet2': '#7c327c',
'violet3': '#9d3f9d',
'violet4': '#bd6bbd',
'violet5': '#d69fd6',
'indigo1': '#5642a6',
'indigo2': '#634dbf',
'indigo3': '#7961db',
'indigo4': '#9881f3',
'indigo5': '#bdadff',
'cerulean1': '#1f4b99',
'cerulean2': '#2458b3',
'cerulean3': '#2965cc',
'cerulean4': '#4580e6',
'cerulean5': '#669eff',
'turquoise1': '#004d46',
'turquoise2': '#007067',
'turquoise3': '#00a396',
'turquoise4': '#13c9ba',
'turquoise5': '#7ae1d8',
'forest1': '#1d7324',
'forest2': '#238c2c',
'forest3': '#29a634',
'forest4': '#43bf4d',
'forest5': '#62d96b',
'lime1': '#43501b',
'lime2': '#5a701a',
'lime3': '#8eb125',
'lime4': '#b6d94c',
'lime5': '#d4f17e',
'gold1': '#5c4405',
'gold2': '#866103',
'gold3': '#d1980b',
'gold4': '#f0b726',
'gold5': '#fbd065',
'sepia1': '#5e4123',
'sepia2': '#7a542e',
'sepia3': '#946638',
'sepia4': '#af855a',
'sepia5': '#d0b090',
},
boxShadow: {
// blueprintjs elevation levels
// 0 -> xs, 1 -> sm, 2 -> default, 3 -> lg, 4 -> xl
'xs': '0 0 0 1px rgba(16,22,26, 0.15), 0 0 0 rgba(16,22,26, 0), 0 0 0 rgba(16,22,26, 0)',
'sm': '0 0 0 1px rgba(16,22,26, 0.1), 0 0 0 rgba(16,22,26, 0), 0 1px 1px rgba(16,22,26, 0.2)',
'default': '0 0 0 1px rgba(16,22,26, 0.1), 0 1px 1px rgba(16,22,26, 0.2), 0 2px 6px rgba(16,22,26, 0.2)',
'lg': '0 0 0 1px rgba(16,22,26, 0.1), 0 2px 4px rgba(16,22,26, 0.2), 0 8px 24px rgba(16,22,26, 0.2)',
'xl': '0 0 0 1px rgba(16,22,26, 0.1), 0 4px 8px rgba(16,22,26, 0.2), 0 18px 46px 6px rgba(16,22,26, 0.2)',
// additional default tailwind styles
'inner': 'inset 0 2px 4px 0 rgba(0,0,0,0.06)',
'outline': '0 0 0 3px rgba(52,144,220,0.5)',
'none': 'none',
},
extend: {
inset: {
'1/2': '50%',
},
},
},
corePlugins: {
container: false,
keyframes: false,
animation: true,
},
purge: false,
future: {
removeDeprecatedGapUtilities: true,
},
}