mirror of
https://github.com/0O0o0oOoO00/Alas.git
synced 2026-05-17 05:29:28 +08:00
17 lines
343 B
JavaScript
17 lines
343 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: 'class',
|
|
content: ['./packages/renderer/src/**/*.{vue,js,ts,jsx,tsx}'],
|
|
theme: {
|
|
colors: {
|
|
primary: '#C079F2',
|
|
white: '#ffffff',
|
|
neutral: '#C4C4C4',
|
|
dark: '#2f3136',
|
|
slate: '#020617',
|
|
},
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
};
|