-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtailwind.config.cjs
43 lines (39 loc) · 1.1 KB
/
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
const config = {
content: [
'./src/**/*.{html,js,svelte,ts}',
require('path').join(
require.resolve('@skeletonlabs/skeleton'),
'../**/*.{html,js,svelte,ts}'
),
],
theme: {
extend: {
colors: {
orange: {
DEFAULT: '#FF6014',
50: '#FFDCCC',
100: '#FFCEB7',
200: '#FFB38E',
300: '#FF9766',
400: '#FF7C3D',
500: '#FF6014',
600: '#DB4700',
700: '#A33500',
800: '#6B2300',
900: '#331000',
},
},
dropShadow: {
dark: '0 1px 1px rgba(0, 0, 0, 0.3)',
darker: '0 1px 1px rgba(0, 0, 0, 0.7)',
},
},
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/forms'),
...require('@skeletonlabs/skeleton/tailwind/skeleton.cjs')(),
],
darkMode: 'class',
};
module.exports = config;