-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
38 lines (31 loc) · 908 Bytes
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
background: "#FFFCFB",
foreground: "hsl(var(--foreground))",
darkmaroon: "#590D24",
//Color palette from figma
maroon : "#944E63",
lightmaroon: "#B47B84",
brown: "#CAA6A6",
peach: "#FFE7E7",
//Text colors
primary: "#FFFBFB", //near white, use as substitute to white text
heading: "#262626", //dark gray, use for big texts and headings
body: "#737373", //light gray, use for small texts and body
//remove soon
btn: {
background: "hsl(var(--btn-background))",
"background-hover": "hsl(var(--btn-background-hover))",
},
},
},
},
plugins: [],
};