-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
51 lines (50 loc) · 1.52 KB
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./source/templates/*.html",
'./source/templates/components/*.html',
'./source/static/css/*.css',
'./source/*.js',
'./source/static/js/*.js',
],
theme: {
colors: {
'black-custom': '#323942',
'gray-custom': '#848E9C',
'gray-light-custom': '#f5f5f6',
'gray-medium-custom': '#ECECFF',
'lime-custom': '#00AC3C',
'lime-dark-custom': '#008F32',
'lime-light-custom': '#DEFDE1',
},
extend: {
screens: {
'sm-custom-0.5-max': {max: '420px'},
'sm-custom': '790px',
'sm-custom-max': {max: '790px'},
'sm-custom-2-max': {max: '868px'},
'md-custom': '992px',
'md-custom-max': {max: '992px'},
'lg-custom': '1402px',
'lg-custom-max': {max: '1402px'},
'xl-custom': '1440px',
},
fontFamily: {
'notosans-regular': ["NotoSans-Regular", 'sans-serif'],
'notosans-medium': ["NotoSans-Medium", 'sans-serif'],
'notosans-semibold': ["NotoSans-SemiBold", 'sans-serif'],
'notosans-bold': ["NotoSans-Bold", 'sans-serif'],
'inter-regular': ["Inter-Regular", 'sans-serif'],
},
opacity: {
'23': '.23',
}
},
container: {
center: true,
},
},
plugins: [
require('flowbite/plugin')
],
}