-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
35 lines (35 loc) · 1011 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
/** @type {import('tailwindcss').Config} */
module.exports = {
// darkMode: 'class',
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
fontFamily: {
display: ["var(--font-display)", 'ui-serif', 'Cambria', 'serif']
},
colors: {
cgray: {
DEFAULT: "#EEEEEE",
light: "#fafafa",
dark: "#e2e2e2",
hover: "#d6d6d6",
outline: "#b2b2b2",
},
cbrown: {
DEFAULT: "#79443B",
light: "#9b574c",
dark: "#57312a",
},
cgreen: {
DEFAULT: "#41644A",
light: "#708a77",
dark: "#304b37",
},
}
}
}
}