-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
61 lines (60 loc) · 1.71 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
49
50
51
52
53
54
55
56
57
58
59
60
61
/** @type {import('tailwindcss').Config} */
const plugin = require("tailwindcss/plugin");
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
colors: {
mono: {
100: "#f5f5f5", // Slightly off-white
200: "#ebebeb", // Very light gray
300: "#e1e1e1", // Light gray
400: "#cfcfcf", // Medium light gray
500: "#b1b1b1", // Neutral gray
600: "#9e9e9e", // Slightly darker gray
700: "#7e7e7e", // Dark gray
800: "#4d4d4d", // Darker gray
900: "#2a2a2a", // Almost black
1000: "#0f0f0f", // Very close to pure black
},
shakespeare: {
100: "#4eabd1",
200: "#267393",
400: "#113442",
},
powderBlue: {
50: "#fdfeff",
100: "#b0e0e6",
200: "#63c2cd",
250: "#4fbac7",
300: "#3db2c0",
400: "#318e99",
500: "#246a73",
600: "#18464c",
},
offWhite: "#fafafa",
rebel: "#3c1206",
},
boxShadow: {
subtle: "0px 0px 6px rgb(0 0 0 / 30%)",
subtleWhite: "0 0 3px rgb(250 250 250 / 20%)",
},
},
},
darkMode: "media",
plugins: [
plugin(function ({ addVariant }) {
addVariant("expanded", "&[data-expanded=true]");
addVariant("selected", "&[data-selected=true]");
}),
],
};