-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
35 lines (32 loc) · 856 Bytes
/
tailwind.config.cjs
File metadata and controls
35 lines (32 loc) · 856 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
'node_modules/flowbite-react/**/*.{js,jsx,ts,tsx}',
],
theme: {
extend: {},
colors: {
'navy': '#0a192f',
'light-navy': '#112240',
'lightest-navy': '#233554',
'slate': '#8892b0',
'light-slate': '#a8b2d1',
'lightest-slate': '#ccd6f6',
'mywhite': '#e6f1ff',
'mygreen': '#64ffda',
'mydarkgreen': 'rgba(100,255,218,0.7)'
},
boxShadow: {
'none': '0 0 #0000',
'c1': '2px 2px 5px 0 rgba(0,0,0, 0.3)',
'c2': '4px 4px 15px 0 rgba(0,0,0, 0.5)',
'3xl': '5px 5px 10px 0 rgba(0,0,0, 0.3)',
'4xl': '10px 10px 20px 0 rgba(0,0,0, 0.5)'
}
},
plugins: [
require('flowbite/plugin'),
require('@shrutibalasa/tailwind-grid-auto-fit'),
],
}