forked from cpe-kmutt-student/road-to-engineer-2023
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
44 lines (41 loc) · 1004 Bytes
/
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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
daisyui: {
themes: false,
},
theme: {
extend: {
fontFamily: {
sans:['db-heaventcond', ...defaultTheme.fontFamily.sans],
},
backgroundImage: {
'road-bg-pc': "url('/image/road-bg-pc.svg')",
'road-bg-ipad': "url('/image/road-bg-ipad.svg')",
'road-bg-mobile': "url('/image/road-bg-mobile.svg')",
'eng-bg': "url('/assets/Hero-Bg.svg')"
},
colors: {
'bloodred': {
100: '#C12121',
200: '#8F0202',
300: '#5E0505',
},
'juicy': {
100: '#E46E18',
200: '#D7560D',
300: '#8C2B0C',
}
}
},
},
plugins: [
require('@tailwindcss/forms'),
require('daisyui'),
require('tailwind-scrollbar')({ nocompatible: true }),
],
}