-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
33 lines (33 loc) · 1.11 KB
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/layout/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
"primary-color-1": "#111111",
"primary-color-2": "#161616",
"secondary-color": "#232323",
"accent-color-1": "#3e3e3e",
"accent-color-2": "#b3b3b3",
"primary-color-1-l": "#282828",
"primary-color-2-l": "#2D2D2D",
"secondary-color-l": "#393939",
"accent-color-1-l": "#515151",
"accent-color-2-l": "#B9B9B9",
"dark-red": "#8B0000",
"dark-red-l": "#872B2B",
"dark-green": "#006400",
"dark-green-l": "#316C31",
},
boxShadow: {
"input-shadow": "inset 0px 2px 2px rgba(69, 69, 69, 0.25)",
},
},
},
plugins: [],
};