-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
31 lines (29 loc) · 1.24 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
const colors = require("tailwindcss/colors");
module.exports = {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx,css}"],
theme: {
extend: {
colors: {
dark: "#35393f",
// primary: { ...colors.cyan, DEFAULT: colors.cyan[100] },
// secondary: { ...colors.teal, DEFAULT: colors.teal[500] },
// tertiary: { ...colors.pink, DEFAULT: colors.pink[500] },
primary: { ...colors.slate, DEFAULT: colors.slate[800] },
secondary: { ...colors.teal, DEFAULT: colors.teal[500] },
tertiary: { ...colors.pink, DEFAULT: colors.pink[500] },
// text1: "#353535",
// text2: "#2e2e2e",
// text3: "#131313",
text1: "#b3b3b3",
text2: "#a3a3a3",
text3: "#737373",
text: { ...colors.zinc, DEFAULT: colors.zinc[400] },
// text2: { ...colors.teal, DEFAULT: colors.teal[500] },
// text3: { ...colors.pink, DEFAULT: colors.pink[500] },
},
},
},
darkMode: "class",
plugins: [require("@tailwindcss/forms"), require("autoprefixer")],
};