forked from vannafinance/web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
60 lines (59 loc) · 1.45 KB
/
tailwind.config.ts
File metadata and controls
60 lines (59 loc) · 1.45 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
59
60
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
darkMode: "class",
theme: {
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
baseWhite: "#fafafa",
baseBlack: "#0a0a0b",
baseDark: "#181822",
baseDarkComplementary: "#312F35",
purple: "#7a45da",
secondary: "#f5aba1",
success: "#60d4bb",
warning: "#f3b661",
error: "#da5252",
gradient: {
1: "#f5aba1",
2: "#703ae6",
},
purpleBG: {
lighter: "#e9e0f9",
light: "#bda2ed",
DEFAULT: "#9064e0",
},
darkPurpleBG: {
lighter: "#4B4B56",
},
baseComplementary: "#f4f4ff",
baseSuccess: {
100: "#caf1e8",
300: "#2ea88e",
},
baseSecondary: {
300: "#f8c0b8",
500: "#ed6755",
},
},
backgroundImage: {
"gradient-1": "linear-gradient(to right, #f5aba1, #703ae6)",
"gradient-2": "linear-gradient(to right, #f5aba1, #703ae6)",
},
fontFamily: {
sans: ["var(--font-public-sans)"],
},
screens: {
xs: "480px", // Define the xs breakpoint
},
},
},
plugins: [],
};
export default config;