-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.cjs
50 lines (47 loc) · 1.18 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
44
45
46
47
48
49
50
const defaultTheme = require("tailwindcss/defaultTheme");
/** @type {import("tailwindcss").Config} */
module.exports = {
content: [
"./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}",
"./node_modules/flowbite/**/*.js",
],
theme: {
screens: {
// sm: "640px",
// md: "768px",
// lg: "1024px",
// xl: "1280px",
// "2xl": "1536px",
tablet: "768px",
desktop: "1440px",
},
extend: {
colors: {
// primary
sherpa: "#014E56",
flory: "#F67E7E",
// secondary
baked: "#79C8C7",
casul: "#2C6269",
cyprus: "#004047",
daintree: "#012F34",
swamp: "#002529",
},
fontFamily: {
livvic: ["Livvic", ...defaultTheme.fontFamily.sans],
},
fontSize: {
10: ["0.625rem", { lineHeight: "1.125rem" }],
13: ["0.813rem", { lineHeight: "1.125rem" }],
15: ["0.938rem", { lineHeight: "1.563rem" }],
18: ["1.125rem", { lineHeight: "1.75rem" }],
32: ["2rem", { lineHeight: "2rem" }],
40: ["2.5rem", { lineHeight: "2.5rem" }],
48: ["3rem", { lineHeight: "3rem" }],
64: ["4rem", { lineHeight: "3.5rem" }],
100: ["6.25rem", { lineHeight: "6.25rem" }],
},
},
},
plugins: [require("flowbite/plugin")],
};