forked from sbrin/lopaka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
34 lines (33 loc) · 1.18 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
const daisyui = require('daisyui');
const typography = require('@tailwindcss/typography');
// const tailwind_theme = require('tailwindcss/defaultTheme');
module.exports = {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
plugins: [typography, daisyui],
daisyui: {
themes: [
{
lopaka: {
primary: '#FF8200',
neutral: '#441F07',
'base-100': '#120800', // bg
'base-200': '#441F07', // default button
'base-300': '#FF8200', // default tabs
'base-content': '#f3f4f6',
secondary: '#5f2f0d',
accent: '#047857',
info: '#00c9ff',
success: '#a0d100',
warning: '#f59e0b',
error: '#dc2626',
},
}
],
},
theme: {
fontFamily: {
'sans': 'Roboto, "PT Sans", "Segoe UI", Oxygen, Ubuntu, Cantarell, "Open Sans"',
'mono': ['ui-monospace', 'SFMono-Regular', 'Menlo', 'Monaco', 'Consolas', 'Liberation Mono', 'Courier New','monospace'],
},
}
};