-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
36 lines (36 loc) · 1001 Bytes
/
tailwind.config.js
File metadata and controls
36 lines (36 loc) · 1001 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: ["./src/**/**/*.{js,jsx,ts,tsx}", "./node_modules/flowbite/**/*.js"],
theme: {
screens: {
"sm": "640px",
"md": "768px",
"lg": "1024px",
"xl": "1280px",
"2xl": "1536px",
},
extend: {
colors: {
transparent: "transparent",
current: "currentColor",
"violet": "#5964E0",
"light-violet": "#939BF4",
"very-dark-blue": "#19202D",
"midnight": "#121721",
"white": "#ffffff",
"light-Grey": "#ecebff",
"dark-grey": "#6E8098",
},
fontFamily: {
sans: ["Kumbh Sans", "sans-serif"],
serif: ["Merriweather", "serif"],
},
backgroundImage: {
"mobile-header": "url('../public/assets/mobile/bg-pattern-header.svg')",
"login-poster": "url('../public/assets/tablet/login_poster.jpg')",
},
},
},
plugins: [require("flowbite/plugin")],
};