-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
33 lines (32 loc) · 1016 Bytes
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors')
module.exports = {
content: ["./**/*.templ", "./node_modules/flowbite/**/*.js"],
darkMode: ['class'],
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
colors: {
'c-blue-deep-light': colors.blue[500],
'c-blue-deep': colors.blue[600],
'c-blue-deep-extra': colors.blue[700],
'c-blue-light-backgroud': colors.blue[50],
'c-dark-slate-background': colors.slate[950],
'c-dark-slate-header-background': colors.slate[800],
'c-dark-slate-navbar-background': colors.slate[800],
'c-dark-slate-card': colors.slate[800],
'c-dark-slate-border': colors.slate[600],
'c-dark-slate-text': colors.slate[200],
'c-dark-slate-text-dark': colors.slate[600],
'c-dark-slate-documentation-background': colors.slate[900],
'c-dark-background': colors.slate[600],
'c-dark-blue-background': colors.blue[950],
}
},
},
plugins: [
require('flowbite/plugin')
],
};