forked from palantir/policy-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
130 lines (128 loc) · 3.77 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
128
129
130
const colors = {
}
module.exports = {
theme: {
// generated from blueprintjs colors
// curl -s https://raw.githubusercontent.com/palantir/blueprint/develop/packages/core/src/common/_colors.scss \
// | grep '^\$' \
// | sed 's/\$\(.*\): \([#0-9a-f]*\).*/ '"'\1': '\2',/"
colors: {
'transparent': 'transparent',
'current': 'currentColor',
'black': '#10161a',
'dark-gray1': '#182026',
'dark-gray2': '#202b33',
'dark-gray3': '#293742',
'dark-gray4': '#30404d',
'dark-gray5': '#394b59',
'gray1': '#5c7080',
'gray2': '#738694',
'gray3': '#8a9ba8',
'gray4': '#a7b6c2',
'gray5': '#bfccd6',
'light-gray1': '#ced9e0',
'light-gray2': '#d8e1e8',
'light-gray3': '#e1e8ed',
'light-gray4': '#ebf1f5',
'light-gray5': '#f5f8fa',
'white': '#ffffff',
'blue1': '#0e5a8a',
'blue2': '#106ba3',
'blue3': '#137cbd',
'blue4': '#2b95d6',
'blue5': '#48aff0',
'green1': '#0a6640',
'green2': '#0d8050',
'green3': '#0f9960',
'green4': '#15b371',
'green5': '#3dcc91',
'orange1': '#a66321',
'orange2': '#bf7326',
'orange3': '#d9822b',
'orange4': '#f29d49',
'orange5': '#ffb366',
'red1': '#a82a2a',
'red2': '#c23030',
'red3': '#db3737',
'red4': '#f55656',
'red5': '#ff7373',
'vermilion1': '#9e2b0e',
'vermilion2': '#b83211',
'vermilion3': '#d13913',
'vermilion4': '#eb532d',
'vermilion5': '#ff6e4a',
'rose1': '#a82255',
'rose2': '#c22762',
'rose3': '#db2c6f',
'rose4': '#f5498b',
'rose5': '#ff66a1',
'violet1': '#5c255c',
'violet2': '#752f75',
'violet3': '#8f398f',
'violet4': '#a854a8',
'violet5': '#c274c2',
'indigo1': '#5642a6',
'indigo2': '#634dbf',
'indigo3': '#7157d9',
'indigo4': '#9179f2',
'indigo5': '#ad99ff',
'cobalt1': '#1f4b99',
'cobalt2': '#2458b3',
'cobalt3': '#2965cc',
'cobalt4': '#4580e6',
'cobalt5': '#669eff',
'turquoise1': '#008075',
'turquoise2': '#00998c',
'turquoise3': '#00b3a4',
'turquoise4': '#14ccbd',
'turquoise5': '#2ee6d6',
'forest1': '#1d7324',
'forest2': '#238c2c',
'forest3': '#29a634',
'forest4': '#43bf4d',
'forest5': '#62d96b',
'lime1': '#728c23',
'lime2': '#87a629',
'lime3': '#9bbf30',
'lime4': '#b6d94c',
'lime5': '#d1f26d',
'gold1': '#a67908',
'gold2': '#bf8c0a',
'gold3': '#d99e0b',
'gold4': '#f2b824',
'gold5': '#ffc940',
'sepia1': '#63411e',
'sepia2': '#7d5125',
'sepia3': '#96622d',
'sepia4': '#b07b46',
'sepia5': '#c99765',
},
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: false,
},
purge: false,
future: {
removeDeprecatedGapUtilities: true,
},
}