🎃 Adds darktheme

This commit is contained in:
Rune Harlyk
2023-07-18 17:52:14 +02:00
parent 94f9822505
commit 39588c04fd
3 changed files with 48 additions and 18 deletions
+16 -1
View File
@@ -2,7 +2,22 @@
export default {
content: ['./src/**/*.{html,js,ts,svelte}'],
theme: {
extend: {}
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: []
};