-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.cjs
43 lines (42 loc) · 1.06 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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
safelist: ["aspect-square", "bg-red-400"],
theme: {
screens: {
xs: { min: "320px", max: "640px" },
...defaultTheme.screens,
},
extend: {
typography: {
DEFAULT: {
css: {
h1: {
fontWeight: 200,
},
h2: {
fontWeight: 400,
},
h3: {
fontWeight: 500,
},
},
},
},
},
},
daisyui: {
themes: [
{
heycaseywattsup: {
...require("daisyui/src/theming/themes")["[data-theme=pastel]"],
primary: "rgb(221 214 254)",
secondary: "rgb(191 219 254)",
// "primary-focus": "mediumblue",
},
},
],
},
plugins: [require("@tailwindcss/typography"), require("@tailwindcss/forms"), require("@tailwindcss/aspect-ratio"), require("daisyui")],
};