-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
47 lines (46 loc) · 1.09 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/** @type {import('tailwindcss').Config} */
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
mode: "jit",
darkMode: "media", // or 'media' or 'class'
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
scrollbarWidth: {
thin: "thin",
},
backgroundColor: {
highlight: {
DEFAULT: "#4f46e5",
lighten: "#818cf8",
darken: "#3730a3",
},
},
textColor: {
highlight: {
DEFAULT: "#4f46e5",
lighten: "#818cf8",
darken: "#3730a3",
},
},
borderColor: {
highlight: {
DEFAULT: "#4f46e5",
lighten: "#818cf8",
darken: "#3730a3",
},
},
fillColor: {
highlight: {
DEFAULT: "#4f46e5",
lighten: "#818cf8",
darken: "#3730a3",
},
},
},
},
fontFamily: {
sans: ["Inter var", ...defaultTheme.fontFamily.sans],
},
plugins: [require(`@tailwindcss/forms`), require("@tailwindcss/typography")],
};