-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
58 lines (58 loc) · 1.37 KB
/
tailwind.config.js
File metadata and controls
58 lines (58 loc) · 1.37 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
fontFamily: {
b612: ["B612", "sans-serif"],
sans: ["DM Sans", "sans-serif"],
},
colors: {
primary: "#FFB635",
secondary: "#434040",
accent: "#02073e",
manz: {
100: "#f6fac7",
200: "#FFB635",
300: "#f2f152",
400: "#ece223",
500: "#ddca15",
600: "#bea010",
700: "#987510",
800: "#7e5d15",
900: "#6b4c18",
},
masala: "#434040",
stratos: "#02073e",
astronaut: "#283C7C",
oxford: "#343d48",
},
},
},
plugins: [require("tailwindcss-animated"), require("daisyui")],
daisyui: {
themes: [
{
mytheme: {
primary: "#FFB635",
"primary-content": "#434040",
"primary-focus": "#FFB635",
secondary: "#434040",
"secondary-content": "#fff",
accent: "#02073e",
neutral: "#283C7C",
"base-100": "#fff",
info: "#5bc0de",
success: "#22bb33",
warning: "#f0ad4e",
error: "#bb2124",
},
},
],
darkTheme: "light",
},
};