-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
68 lines (63 loc) · 1.19 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
62
63
64
65
66
67
68
import { fontFamily } from "tailwindcss/defaultTheme";
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./Public/**/*.html",
"./Source/**/*.{astro,js,jsx,ts,tsx,vue,svelte}",
],
darkMode: "media",
theme: {
container: {
center: true,
},
extend: {
transitionTimingFunction: {
Ease: "cubic-bezier(0.21, 0.1, 0.21, 1)",
},
fontFamily: {
sans: ["Albert Sans", ...fontFamily.sans],
},
typography: (theme) => ({
DEFAULT: {
css: {
a: {
"font-weight": "400",
},
li: {
"&::marker": {
color: theme("colors.red.950"),
},
},
h1: {
color: theme("colors.blue.950"),
},
h2: {
color: theme("colors.blue.950"),
},
h3: {
color: theme("colors.blue.950"),
},
h4: {
color: theme("colors.blue.950"),
},
h5: {
color: theme("colors.blue.950"),
},
h6: {
color: theme("colors.blue.950"),
},
},
},
}),
ringWidth: {
5: "5px",
},
},
},
variants: {},
plugins: [
require("@tailwindcss/forms"),
require("@tailwindcss/typography"),
require("@tailwindcss/aspect-ratio"),
],
};