-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtailwind.config.js
More file actions
64 lines (64 loc) · 1.56 KB
/
tailwind.config.js
File metadata and controls
64 lines (64 loc) · 1.56 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
61
62
63
64
/** @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}",
"./src/features/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
// Primary colors
primary: {
purple: "#9011FF",
"purple-light": "#B159FF",
},
// Background colors
bg: {
dark: "#121014",
darker: "#0D0D0D",
darkest: "#050505",
overlay: "#0F0D0F",
card: "#2c2037",
button: "#18181B",
"mobile-menu": "#331251",
"faq-main": "#18171C",
"faq-hover": "#1A1A1A",
"faq-hover-alt": "#23212b",
},
// Text colors
text: {
light: "#EFEFEF",
"light-alt": "#eeeeee",
gray: "#B1B1B1",
"gray-medium": "#A4A4A4",
"gray-alt": "#b0b0b0",
"gray-dark": "#71717A",
footer: "#B6B6B6",
placeholder: "#6F6F6F",
},
// Border colors
border: {
light: "#e7dfdf",
gray: "#252525",
purple: "#84619B",
},
// Ring colors
ring: {
color: "#2B1627",
},
// Button colors
button: {
gray: "#393D41",
},
},
fontFamily: {
playfair: ["Playfair Display", "serif"],
geist: ["Geist", "sans-serif"],
manrope: ["Manrope", "sans-serif"],
},
},
},
plugins: [],
};