-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
54 lines (51 loc) · 1.24 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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require("tailwindcss/defaultTheme");
export default {
darkMode: "selector",
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
screens: {
xs: "410px",
...defaultTheme.screens,
},
extend: {
colors: {
prime: "#FFE418",
navColor: "#126E51",
},
fontFamily: {
lato: '"Lato", sans-serif',
rubik: '"Rubik Maps", system-ui',
},
},
},
plugins: [require("daisyui")],
daisyui: {
themes: [
{
light: {
...require("daisyui/src/theming/themes")["light"],
primary: "#2196F3",
secondary: "teal",
".navbar-color": {
"background-color": "#2196F3",
},
"--swiper-pagination-color": "#2196F3",
"--swiper-auto-count-color": "#2196F3",
},
},
{
dark: {
...require("daisyui/src/theming/themes")["dark"],
primary: "#FFE418",
secondary: "teal",
".navbar-color": {
"background-color": "#111827",
},
"--swiper-pagination-color": "#FFE418",
"--swiper-auto-count-color": "#FFE418",
},
},
],
},
};