-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathtailwind.config.js
More file actions
32 lines (31 loc) · 922 Bytes
/
tailwind.config.js
File metadata and controls
32 lines (31 loc) · 922 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
Green: "#1fdf64",
Black: "#000",
DeepNightBlack: "#121212",
MidNightBlack: "#181818",
EveningBlack: "#1a1a1a",
DarkGray: "#282828",
SlateGray: "#404040",
LightGray: "#959595",
SilverGray: "#B3B3B3",
Snow: "#ffffff",
},
fontFamily: {
'cascadia-normal': ['cascadia-normal'],
'circular': ['circular-normal', 'sans-serif'],
'circular-light': ['circular-light', 'sans-serif'],
'circular-normal': ['circular-normal', 'sans-serif'],
'circular-medium': ['circular-medium', 'sans-serif'],
'circular-bold': ['circular-bold', 'sans-serif'],
}
},
},
}