forked from FairCrypto/sol-xen-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
129 lines (127 loc) · 3.64 KB
/
tailwind.config.ts
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
import type { Config } from "tailwindcss";
import defaultTheme from "tailwindcss/defaultTheme";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
},
colors: {
accent: "bg-accent",
primary: "bg-accent",
},
},
safelist: [
{
pattern: /^(bg-|border-|text-)/,
variants: ["hover", "active"],
},
],
plugins: [require('@tailwindcss/typography'), require('daisyui')],
darkMode: 'media',
daisyui: {
themes: [
// "light",
// "dark",
// "cupcake",
// "bumblebee",
// "emerald",
// "corporate",
// "synthwave",
// "retro",
// "cyberpunk",
// "valentine",
// "halloween",
// "garden",
// "forest",
// "aqua",
// "lofi",
// "pastel",
// "fantasy",
// "wireframe",
// "black",
// "luxury",
// "dracula",
// "cmyk",
// "autumn",
// "business",
// "acid",
// "lemonade",
// "night",
// "coffee",
// "winter",
// "dim",
// "nord",
// "sunset",
{
xenblocks: {
"primary": "#19FF14",
"primary-focus": "#19FF14", // You can adjust this to make it slightly darker for the focus state
"primary-content": "#000000", // Text color on primary background
"secondary": "#334143", // Secondary color, adjust as needed
"secondary-focus": "#445759", // Focus state for secondary color
"secondary-content": "#000000", // Text color on secondary background
"accent": "#ffffff", // Accent color, adjust as needed
"accent-focus": "#2ba59b", // Focus state for accent color
"accent-content": "#000000", // Text color on accent background
"neutral": "#3d4451", // Neutral color, adjust as needed
"neutral-focus": "#2a2e37", // Focus state for neutral color
"neutral-content": "#B1B1B1", // Text color on neutral background
"base-100": "#161616", // Base color for backgrounds
"base-200": "#070C0D", // Base color for slightly darker backgrounds
"base-300": "#444444", // Base color for even darker backgrounds
"base-content": "#B1B1B1", // Base text color
"info": "#2094f3", // Info color
"success": "#009485", // Success color
"warning": "#ff9900", // Warning color
"error": "#FF1414", // Error color
"--rounded-box": "0",
"--rounded-btn": "0",
"--rounded-badge": "0",
"--tab-radius": "0",
"fontFamily":
"PT Mono",
"body": {
"fontFamily":
"ProtoMono",
},
"h1": {
"fontFamily": "ProtoMono",
},
"h2": {
"fontFamily": "ProtoMono",
},
"h3": {
"fontFamily": "ProtoMono",
},
"h4": {
"fontFamily": "ProtoMono",
},
".btn": {
"fontFamily": "ProtoMono",
},
".tab": {
"fontFamily": "ProtoMono",
},
".alert": {
"border": "2px",
"fontFamily": "ProtoMono",
},
".btn-lg": {
"height": "3rem",
"minHeight": "3rem",
},
}
}
]
},
};
export default config;