-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
68 lines (66 loc) · 1.92 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/** @type {import('tailwindcss').Config} */
const colors = require("tailwindcss/colors");
module.exports = {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx,vue}",
"./node_modules/flowbite/**/*.js"
],
theme: {
screens: {
sm: "480px",
md: "768px",
tables: "960px",
desktop: "1248px",
},
colors: {
white: "#ffffff",
"main-white": "#f3e6e6",
"dark-blue": "#171634",
"dark-bluel": "#1f1e44",
// blue: "#1E88E5",
red: "#F44336",
green: "#4CAF50",
yellow: "#FFEB3B",
black: "#000000",
grey: "#2A2929FF",
"dark-grey": "#1e293b",
"cool-red": "#de8a83",
"cool-green": "#8adec2",
"slate-800": "#1e293b",
"slate-700": "#334155",
sky: colors.sky,
blue: colors.blue,
cyan: colors.cyan,
"purple-one": "#f4f0fa",
"purple-two": "#e5d9f2",
"purple-three": "#cdc1ff",
"purple-four": "#8b7bde",
"purple-five": "#7371fc"
},
boxShadow: {
sm: "0, 2px 4px 0px rgba(11.10.55.15)",
lg: "0, 8px 20px 0px rgba(18, 16, 99, 0.06)",
},
fontSize: {
xs: ["14px", { lineHeight: "24px", letterSpacing: "-0.03em" }],
sm: ["16px", { lineHeight: "28px", letterSpacing: "-0.03em" }],
lg: ["18px", { lineHeight: "28px", letterSpacing: "-0.03em" }],
"2lg": ["24px", { lineHeight: "28px", letterSpacing: "-0.03em" }],
"2xl": ["36px", { lineHeight: "48px", letterSpacing: "-0.032em" }],
"3xl": ["48px", { lineHeight: "56px", letterSpacing: "-0.032em" }],
"4xl": ["56px", { lineHeight: "64px", letterSpacing: "-0.032em" }],
"5xl": ["80px", { lineHeight: "80px", letterSpacing: "-0.032em" }],
},
fontFamily: {
inter: ["Inter", "sans-serif"],
KulimPark: ["Kulim Park", "sans-serif"],
},
extend: {},
},
plugins: [
require('@tailwindcss/forms'),
require('flowbite/plugin')
],
darkMode: "class"
}