-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
57 lines (56 loc) · 1.12 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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
important: true,
content: [
'./src/**/*.{html,js,svelte,ts}',
'./node_modules/flowbite-svelte/**/*.{html,js,svelte,ts}'
],
theme: {
colors: {
green: {
one: '#519A70',
two: '#498B65',
three: '#417b5a',
four: '#3C7354',
five: '#386A4E'
},
dark: {
one: '#5D5D5D',
two: '#3C3C3C',
three: '#1c1c1c',
four: '#141414',
five: '#0A0A0A'
},
platinum: {
one: '#F5F6F4',
two: '#EAECE9',
three: '#DADDD8',
four: '#D6D9D3',
five: '#CBDOC8'
},
alabaster: {
two: '#F7F6F3',
three: '#ECEBE4',
four: '#E6E4DB',
five: '#DDDBCF'
},
flash: {
one: '#EEF0F2',
two: '#E8EBED',
three: '#DCE0E4',
four: '#D1D6DC',
five: '#C5CCD3'
},
ghost: '#FAFAFF'
},
extend: {
fontFamily: {
sans: ['Poppins', ...defaultTheme.fontFamily.sans],
serif: ['Gloock', ...defaultTheme.fontFamily.serif]
}
}
},
plugins: [require('flowbite/plugin'), require('@tailwindcss/container-queries')],
darkMode: 'class'
};