-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
51 lines (51 loc) · 1.12 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
module.exports = {
darkMode: 'class',
content: [
"./src/**/*.{js,vue,ts}",
"./nuxt.config.{js,ts}",
"./node_modules/flowbite/dist/*.js",
"./node_modules/preline/dist/*.js",
],
theme: {
extend: {
animation: {
'spin-slow': 'spin 3s linear infinite',
},
colors: {
primary: {
"50": "#D5E2F1",
"100": "#C9DAED",
"200": "#B6CCE7",
"300": "#98B7DD",
"400": "#7DA4D4",
"500": "#5789C7",
"600": "#4079BF",
"700": "#386BA8",
"800": "#2F5A8E",
"900": "#224167",
},
gray: {
'50': '#f9fafb',
'100': '#f4f5f7',
'200': '#e5e7eb',
'300': '#d5d6d7',
'400': '#9e9e9e',
'500': '#707275',
'600': '#4c4f52',
'700': '#24262d',
'800': '#1a1c23',
'900': '#121317',
},
},
screens: {
'm320': {'max': '320px' },
},
},
},
plugins: [
// https://flowbite.com/
require('flowbite/plugin'),
// https://preline.co/
require('preline/plugin'),
],
}