-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.mjs
37 lines (36 loc) · 1.16 KB
/
tailwind.config.mjs
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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require("tailwindcss/defaultTheme")
export default {
darkMode: "class",
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
colors: {
// i dont want to use it in tailwind I just want to use it as notes
// "primary-text-color-dark-hover: white",
// "primary-text-color-dark: blue-100",
// "primary-text-color-light-hover: indigo-700",
// "primary-text-color-light: black",
// "primary-bg-dark: dark:from-blue-950 dark:via-purple-900 dark:to-pink-800,
// "primary-bg-light: from-blue-100 via-purple-500 to-pink-500,
// "secondary-bg-dark: blue-950",
// "secondary-bg-light: gray-950",
},
theme: {
extend: {
...defaultTheme
// fontSize: {
// sm: '0.8rem',
// base: '1rem',
// xl: '1.25rem',
// '2xl': '1.563rem',
// '3xl': '1.953rem',
// '4xl': '2.441rem',
// '5xl': '3.052rem',
// },
// fontFamily: {
// // 'sans': ['"Proxima Nova"', ...defaultTheme.fontFamily.sans],
// // 'sans': ['"cursive"', ...defaultTheme.fontFamily.sans],
// },
}
},
plugins: []
}