-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
57 lines (48 loc) · 1.04 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
import { fontFamily } from "tailwindcss/defaultTheme";
/** @type {import('tailwindcss').Config} */
var config = {
content: [
"./Public/**/*.html",
"./Source/**/*.{astro,css,html,js,json,jsx,md,mdx,scss,svelte,ts,tsx,vue}",
"./index.html",
__dirname + "/**/*.vue",
__dirname + "/frontend/**/*.{css,html,ts,js}",
__dirname + "/src/main.js",
__dirname + "/src/{components,views}/**/*.js",
],
darkMode: "media",
theme: {
container: {
center: true,
},
extend: {
ringWidth: {
2: "2.1px",
},
transitionTimingFunction: {
Ease: "cubic-bezier(0.21, 0.1, 0.21, 1)",
},
fontFamily: {
sans: ["Fira Sans", "Albert Sans", ...fontFamily.sans],
},
typography: {
DEFAULT: {
css: {
a: {
"font-weight": "400",
},
},
},
},
colors: {
backgroundDark: "var(--background-dark)",
backgroundLight: "var(--background-light)",
},
},
},
plugins: [
require("@tailwindcss/forms"),
require("@tailwindcss/typography"),
require("@tailwindcss/aspect-ratio"),
],
};