-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
52 lines (52 loc) · 1.02 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
module.exports = {
mode: "jit",
purge: ["./src/**/*.tsx", "./src/**/*.ts"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
main: {
DEFAULT: '#1B1E21',
dark: '#161A1D',
black: '#0E1515',
},
servers: {
DEFAULT: '#2c2e30',
},
channels: {
DEFAULT: '#3f4245',
highlight: '#484b4f',
selected: '#474b4f',
text: '#8f969c',
},
messages: {
DEFAULT: '#4b4e52',
highlight: '#45474a',
},
userinfo: {
DEFAULT: '#383a3d',
},
userlist: {
DEFAULT: '#3f4245',
highlight: '#484b4f',
},
textbox: {
DEFAULT: '#54575c',
}
}
}
},
variants: {
extend: {},
},
plugins: [
require('@tailwindcss/forms'),
function({ addUtilities }) {
addUtilities({
'.break-anywhere': {
overflowWrap: 'anywhere',
}
})
}
],
};