2022-03-17 14:45:04 +08:00
|
|
|
/* eslint-disable @typescript-eslint/no-var-requires */
|
2022-03-13 14:40:38 +08:00
|
|
|
const colors = require('tailwindcss/colors')
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
content: [
|
|
|
|
'./packages/renderer/index.html',
|
|
|
|
'./packages/renderer/src/**/*.{vue,js,ts,jsx,tsx}',
|
|
|
|
],
|
|
|
|
darkMode: 'media',
|
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
colors: {
|
|
|
|
// brand: {
|
|
|
|
// 50: '#f5f7fe',
|
|
|
|
// 100: '#ebeffd',
|
|
|
|
// 200: '#ccd7fa',
|
|
|
|
// 300: '#adbff7',
|
|
|
|
// 400: '#708ef0',
|
|
|
|
// 500: '#335eea',
|
|
|
|
// 600: '#2e55d3',
|
|
|
|
// 700: '#2647b0',
|
|
|
|
// 800: '#1f388c',
|
|
|
|
// 900: '#192e73',
|
|
|
|
// },
|
|
|
|
brand: colors.blue,
|
|
|
|
gray: colors.neutral,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
variants: {},
|
|
|
|
}
|