-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
51 lines (50 loc) · 1.28 KB
/
Copy pathtailwind.config.ts
File metadata and controls
51 lines (50 loc) · 1.28 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
import type { Config } from "tailwindcss";
const config: Config = {
darkMode: "class",
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
primary: {
DEFAULT: "#9833eb", // Figma deep vibrant purple
foreground: "#ffffff",
50: "#faf5ff",
100: "#f3e8ff",
500: "#9833eb", // Base primary
600: "#7e22ce", // Darker primary
700: "#6b21a8",
},
secondary: {
DEFAULT: "#14b8a6",
foreground: "#ffffff",
},
surface: {
DEFAULT: "#f3eef6", // Figma exact profile background
},
figma: {
card: "#e8dded",
toggleOn: "#8a56a4",
toggleOff: "#b7bbc3",
textMuted: "#6f6f6f",
statQuiz: "#f0e4ff",
statStreak: "#fff0dc",
statGem: "#e7fbff",
},
accent: {
DEFAULT: "#f472b6",
},
},
fontFamily: {
sans: ["var(--font-outfit)", "ui-sans-serif", "system-ui"],
},
},
},
plugins: [],
};
export default config;