-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.js
69 lines (68 loc) · 1.85 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
const { NonceAccount } = require("@solana/web3.js");
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
'./src/modules/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
brandblack: "#1F2125",
transparent: 'transparent',
transparentwhite: "rgba(255, 255, 255, 0.4)",
darkcharcoal: "#2F3336",
borderwidget: "rgba(37, 51, 65, 0.5)",
gray: {
950: "#8899A6",
},
current: 'currentColor',
'white': '#fff',
'black': '#000',
'grey': 'var(--grey-color)',
'focus': 'var(--focus-color)',
'focusbackground': 'var(--focusbackground-color)',
'primary': 'var(--primary-color)',
'lightprimary': 'var(--lightprimary-color)',
'darkprimary': 'var(--darkprimary-color)',
'secondary': 'var(--secondary-color)',
'footer': 'var(--footer-color)',
'content': '#cecece',
'darkGreen': "#162724",
// kisikbo5 wrote this
'globalBgColor': '#131314',
'semiSplitter' : '#1d1f1f',
'panelBgColor': '#181818'
// end of kisikbo5
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--gradient-color-stops))',
'light-gradient-radial': 'radial-gradient(var(--light-gradient-color-stops))',
'gradient-linear': 'linear-gradient(var(--gradient-linear-stops))',
}
},
screens: {
'xs' : '220px',
'sm' : '640px',
'md' : '768px',
'lg' : '1024px',
'xl' : '1280px',
'custom-2xl' : '1680px'
}
},
plugins: [],
safelist: [
{
pattern: /(mt|mb|mr|ml|my|mx|px|py|pt|pb|pl|pr)-[0-9]+/
},
{
pattern: /flex-.*/
},
{
pattern: /(bottom|right|top|left)-[0-9]+/
},
{
pattern: /(w|h)-[0-9]+/
}
]
}