cosmos-explorer/tailwind.config.js

17 lines
326 B
JavaScript
Raw Normal View History

2023-04-24 15:12:08 +00:00
/** @type {import('tailwindcss').Config} */
module.exports = {
2023-04-24 17:02:59 +00:00
darkMode: ['class'],
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
2023-04-24 15:12:08 +00:00
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: [],
2023-04-24 17:02:59 +00:00
};