cosmos-explorer/tailwind.config.js

20 lines
316 B
JavaScript
Raw Normal View History

2023-04-24 15:12:08 +00:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
2023-04-24 16:37:16 +00:00
extend: {
colors: {
main: '#5973fe',
yes: '#3fb68b',
no: '#ff5353',
2023-04-24 16:44:57 +00:00
info: '#00ddc6',
2023-04-24 16:37:16 +00:00
},
},
2023-04-24 15:12:08 +00:00
},
plugins: [],
}