-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathtailwind.config.js
More file actions
32 lines (30 loc) · 802 Bytes
/
tailwind.config.js
File metadata and controls
32 lines (30 loc) · 802 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}",
"./helper/themeClasses.js",
],
darkMode: 'class',
theme: {
colors: {
light_main_primary: "#0E7566",
light_main_secondary: "#16bba3",
light_main_secondary_low: "#4c4c6d",
light_main_secondary_high: "#FFFFFF",
light_main_grey: "#0E7566",
light_main_yellow: "#B39256",
dark_main_primary: "#1b9c85",
dark_main_secondary: "#4c4c6d",
dark_main_secondary_low: "#e8f6ef",
dark_main_secondary_high: "#232334",
dark_main_grey: "#a6a6c1",
dark_main_yellow: "#ffe194",
},
fontFamily: {
Helvetica: ["Helvetica"],
},
extend: {},
},
plugins: [],
};