-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
tailwind.config.js
71 lines (64 loc) · 2.3 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
const colors = require('tailwindcss/colors')
module.exports = {
important: '#root',
content: {
mode: "all",
content: ["./**/*.html"],
options: {
whitelist: [],
},
},
theme: {
fontFamily:{
'Poppins': ['Poppins', 'sans-serif'],
},
container: {
center: true,
},
extend: {
colors: {
blueGray: colors.slate,
coolGray: colors.gray,
warmGray: colors.stone,
cyan: colors.cyan,
trueGray: colors.neutral,
violet: colors.violet,
},
},
},
variants: {
},
plugins:
[
require("@tailwindcss/typography"),
require('daisyui'),
],
daisyui: {
themes: [
{
'odevs': { /* your theme name */
'primary' : '#0b3b59', /* Primary color */
'primary-focus' : '#08293e', /* Primary color - focused */
'primary-content' : '#ffffff', /* Foreground content color to use on primary color */
'secondary' : '#7eadbf', /* Secondary color */
'secondary-focus' : '#658a99', /* Secondary color - focused */
'secondary-content' : '#ffffff', /* Foreground content color to use on secondary color */
'accent' : '#06b6d4', /* Accent color */
'accent-focus' : '#0891b2', /* Accent color - focused */
'accent-content' : '#ffffff', /* Foreground content color to use on accent color */
'neutral' : '#3d4451', /* Neutral color */
'neutral-focus' : '#2a2e37', /* Neutral color - focused */
'neutral-content' : '#ffffff', /* Foreground content color to use on neutral color */
'base-100' : '#f9fafb', /* Base color of page, used for blank backgrounds */
'base-200' : '#f2f2f2', /* Base color, a little darker */
'base-300' : '#f5f5f5', /* Base color, even more darker */
'base-content' : '#1f2937', /* Foreground content color to use on base color */
'info' : '#2094f3', /* Info */
'success' : '#009485', /* Success */
'warning' : '#ff9900', /* Warning */
'error' : '#dc2626', /* Error */
},
},
],
},
};