-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
58 lines (57 loc) · 1.46 KB
/
tailwind.config.js
File metadata and controls
58 lines (57 loc) · 1.46 KB
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./node_modules/flowbite/**/*.js",
],
darkMode: 'class',
theme: {
screens: {
'xs': '375px',
'sm': '540px',
'md': '720px',
'lg': '960px',
'xl': '1140px',
'2xl': '1550px',
},
container: {
center: true,
padding: '20px',
},
fontFamily: {
'sans': ['Gilroy', 'sans-serif'],
},
fontSize: {
'xxs': ['14px', '1.6em'],
'xs': ['16px', '1.6em'],
'sm': ['18px', '1.6em'],
'md': ['20px', '1.45em'],
'lg': ['26px', '1.3em'],
'xl': ['36px', '1.3em'],
'2xl': ['64px', '1.1em'],
'3xl': ['96px', '1.1em'],
},
extend: {
colors: {
white: "#FFF",
purple: "#7843E9",
pink: "#EC4176",
dark: "#222",
gray: "#454545",
darkblue: "#1E1F43",
body: '#BDBECA',
card: '#323359',
},
},
},
variants: {
extend: {},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
require('@tailwindcss/aspect-ratio'),
require('flowbite/plugin'),
],
}