-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.cjs
50 lines (50 loc) · 917 Bytes
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
colors: {
thw: {
DEFAULT: '#120A8F',
50: '#f8f7fe',
100: '#eeedfe',
200: '#dedcfd',
300: '#c8c4fb',
400: '#a49ef8',
500: '#7f77f5',
600: '#5e54f3',
700: '#4c40f2',
800: '#1f11ee',
900: '#1a0ec7'
},
accent: '#EEE648',
correct: {
DEFAULT: '#24CEA6',
200: '#24cea640'
},
wrong: {
DEFAULT: '#DE5444',
200: '#de544440'
},
gray: {
DEFAULT: '#D9D9D9',
50: '#f7f7f7',
100: '#ededed',
200: '#d9d9d9',
300: '#c8c8c8',
400: '#adadad',
500: '#999999',
600: '#888888',
700: '#7b7b7b',
800: '#676767',
900: '#545454',
950: '#363636'
}
},
fontFamily: {
calibri: ['Calibri', 'sans-serif']
}
}
},
plugins: []
};