forked from LiveTL/LiveTL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
48 lines (45 loc) · 891 Bytes
/
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
const smelteTailwind = require('smelte/tailwind.config.js');
const colors = {
primary: '#2196F3',
secondary: '#3f51b5',
error: '#f44336',
success: '#4caf50',
alert: '#ff9800',
blue: '#2196f3',
dark: '#212121'
};
const smelteConfig = {
colors,
darkMode: true,
theme: {
extend: {
colors: {
member: {
light: '#0E5D10',
dark: '#04B301'
},
moderator: {
light: '#2441C0',
dark: '#A0BDFC'
},
owner: {
light: '#866518',
dark: '#FFD600'
},
deleted: {
light: '#6E6B6B',
dark: '#898888'
},
translated: {
light: '#0050da',
dark: '#b9d9ff'
},
ytbg: {
light: '#ffffff',
dark: '#0f0f0f'
}
}
}
}
};
module.exports = smelteTailwind(smelteConfig);