forked from EddieHubCommunity/BioDrop
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
48 lines (48 loc) · 1.05 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
darkMode: "class",
theme: {
extend: {
colors: {
dark: "#000000",
"dark-2": "#121212",
primary: {
// blue
low: "#f6f7f8",
"low-medium": "#939da8",
"low-high": "#8894a1",
"medium-low": "#627180",
medium: "#122640",
high: "#122640",
},
secondary: {
// coral
low: "#80cdd6",
"low-high": "#38a1ad",
"medium-low": "#2A7D86",
medium: "#38a1ad",
high: "#164145",
"high-high": "#0b2023",
},
tertiary: {
// teal
low: "#f49fa4",
medium: "#ed616b",
high: "#770d14",
},
},
},
},
corePlugins: {
aspectRatio: false,
},
plugins: [
require("@tailwindcss/typography"),
require("@tailwindcss/forms"),
require("@tailwindcss/aspect-ratio"),
],
};