mirror of https://github.com/veypi/OneAuth.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
538 B
JavaScript
28 lines
538 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./components/**/*.{js,vue,ts}",
|
|
"./layouts/**/*.vue",
|
|
"./pages/**/*.vue",
|
|
"./plugins/**/*.{js,ts}",
|
|
"./app.vue",
|
|
"./error.vue",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
vprimary: '#2196f3',
|
|
vsecondary: '#ecc94b',
|
|
vaccents: '#ff9800',
|
|
verror: '#f44336',
|
|
vwaring: '#ff5722',
|
|
vinfo: '#ffc107',
|
|
vsuccess: '#53de58',
|
|
vignore: '#d1d5db',
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|