-
Notifications
You must be signed in to change notification settings - Fork 8
/
tailwind.config.mjs
90 lines (85 loc) · 2.09 KB
/
tailwind.config.mjs
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
import forms from '@tailwindcss/forms';
import flowbitePlugin from 'flowbite/plugin';
import stwuiPlugin from 'stwui/plugin';
const config = {
content: [
'./src/**/*.{html,js,svelte,ts}',
'./node_modules/flowbite-svelte/**/*.{html,js,svelte,ts}',
'./node_modules/flowbite-svelte-icons/**/*.{html,js,svelte,ts}',
'./node_modules/stwui/**/*.{svelte,js,ts,html}',
],
plugins: [forms, flowbitePlugin, stwuiPlugin],
darkMode: 'class',
theme: {
extend: {
colors: {
// flowbite-svelte
primary: {
50: '#eaf6f0',
100: '#d2ecdf',
200: '#bbe1ce',
300: '#a3d7bd',
400: '#8bcdac',
500: '#74c29b',
600: '#5cb88a',
700: '#44ae79',
800: '#2da368',
900: '#159957',
},
atcoder: {
Q11: '#e4e3e3',
Q10: '#e4dfdc',
Q9: '#dde3dc',
Q8: '#dde7e7',
Q7: '#dddceb',
Q6: '#e8e7dc',
Q5: '#ece3dc',
Q4: '#ecdcdc',
Q3: '#741b47',
Q2: '#7f6000',
Q1: '#01fb02',
D1: '#72C6ef',
D2: '#002eff',
D3: '#ffff02',
D4: '#ff9900',
D5: '#ff1000',
D6: '#cc0A00',
gray: '',
brown: '',
green: '',
cyan: '',
blue: '',
yellow: '',
orange: '',
red: '',
bronze: '',
silver: '',
gold: '',
ns: '#ffffff',
wa: {
default: '#f0ad4e',
hover: '#d97706',
background: '#ffeeba',
background_dark: '#91400f',
},
ac: {
default: '#5cb85c',
hover: '#449d44',
background: '#c3e6cb',
background_dark: '#09c12f',
with_editorial: {
default: '#00aeef',
hover: '#21a0db',
background: '#d7dcf5',
background_dark: '#3abff8',
},
},
},
},
screens: {
xs: '420px',
},
},
},
};
export default config;