-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
49 lines (43 loc) · 945 Bytes
/
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
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: {
DEFAULT: {
css: {
a: {
"font-weight": "400",
},
},
},
},
colors: {
backgroundLight: "var(--background-light)",
backgroundDark: "var(--background-dark)",
},
},
},
variants: {},
plugins: [
require("@tailwindcss/forms"),
require("@tailwindcss/typography"),
require("@tailwindcss/aspect-ratio"),
],
// TODO: Link that to the dynamic components inside ./Source/Function/Scroll/Layout.astro
safelist: ["h-2", "w-2"],
};