forked from sbrin/lopaka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
42 lines (41 loc) · 1.28 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
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', // orange
'base-100': '#0a0a0a', // bg
'base-200': '#441F07', // default button
'base-300': '#333', // default tabs
neutral: '#171717',
secondary: '#202020',
accent: '#00ff93',
info: '#6dc8ff',
success: '#cddc39',
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',
],
},
},
};