Files
SpotMicroESP32-Leika/app/tailwind.config.js
T
Rune Harlyk 22b54261f0 📏 Formats app code
2024-02-23 09:16:20 +01:00

24 lines
511 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,ts,svelte}'],
theme: {
extend: {
colors: {
primary: '#6200EE',
'primary-variant': '#3700B3',
secondary: '#3700B3',
'secondary-variant': '#3700B3',
background: '#1e1e1e',
surface: '#2c2c2c',
error: '#B00020',
'on-primary': '#FFFFFF',
'on-secondary': '#FFFFFF',
'on-background': '#FFFFFF',
'on-surface': '#FFFFFF',
'on-error': '#FFFFFF'
}
}
},
plugins: []
};