-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.mjs
42 lines (41 loc) · 1.01 KB
/
tailwind.config.mjs
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
import plugin from "tailwindcss/plugin";
/** @type {import('tailwindcss').Config} */
export default {
darkMode: ["class"],
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
colors: {
background: "#000000e6",
backgroundWhite: "#fff9",
textBlack: "#1c1e21",
peacock: "#31748f",
fadegreen: "#9cd8a0",
textWhite: "rgb(201, 202, 204)",
},
fontFamily: {
mono: ["JetBrains Mono", "monospace"],
serif: ["PTSerrif"],
sans: [
"Helvetica",
"sans-serif",
"Apple Color Emoji",
"Segoe UI Emoji",
"Segoe UI Symbol",
"Noto Color Emoji",
],
},
borderRadius: {
lg: "var(--radius)",
md: "calc(var(--radius) - 2px)",
sm: "calc(var(--radius) - 4px)",
},
},
},
plugins: [
require("tailwindcss-animate"),
plugin(function ({ addVariant }) {
addVariant("weeb", ".weeb &");
}),
],
};