-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtailwind.config.cjs
64 lines (61 loc) · 1.22 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/** @type {import('tailwindcss').Config}*/
const config = {
content: [
'./src/**/*.{html,js,svelte,ts}',
'./node_modules/flowbite-svelte/**/*.{html,js,svelte,ts}'
],
darkMode: 'class',
theme: {
extend: {
colors: {
primary: {
50: '#ebf5ff',
100: '#fff1ee',
200: '#ffe4de',
300: '#ffd5cc',
400: '#ffbcad',
500: '#fe795d',
600: '#ef562f',
700: '#eb4f27',
800: '#d3330a',
900: '#d3330a'
},
latte: {
blue: '#1e66f5',
lavender: '#7287fd',
sapphire: '#209fb5'
},
mocha: {
lavender: '#b4befe',
sapphire: '#74c7ec'
}
},
rotate: {
360: '360deg'
},
textDecorationThickness: {
6: '6px'
},
keyframes: {
'pulse-slow': {
'0%, 100%': { opacity: '1' },
'50%': { opacity: '0.8' }
}
},
animation: {
'pulse-slow': 'pulse-slow 2s ease-in-out infinite'
}
}
},
plugins: [
require('flowbite/plugin'),
require('@catppuccin/tailwindcss')({
// prefix to use, e.g. `text-pink` becomes `text-ctp-pink`.
// default is `false`, which means no prefix
prefix: 'ctp',
// which flavour of colours to use by default, in the `:root`
defaultFlavour: 'mocha'
})
]
};
module.exports = config;