-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
34 lines (33 loc) · 904 Bytes
/
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
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: ['./src/**/*.{html,js}'],
theme: {
fontFamily: {
roboto: ['Roboto', 'sans-serif'],
},
colors: {
current: 'currentColor',
transparent: 'transparent',
white: '#ffffff',
black: '#000000',
body: '#64748B',
'body-dark': '#F1F5F9',
background: '#F1F5F9',
'background-dark': '#495C6E',
primary: '#3C50E0',
secondary: '#80CAEE',
success: '#219653',
danger: '#D34053',
warning: '#FFA70B',
},
screens: {
...defaultTheme.screens,
},
extend: {
backgroundImage: {
video: "url('../images/video/video.png')",
},
},
},
plugins: [],
}