feat: change to dark mode theme

based on dracula midnight colors
This commit is contained in:
w33ble
2026-01-11 20:36:59 -07:00
parent 6d22f8860f
commit dde699e3f4
5 changed files with 74 additions and 55 deletions

View File

@@ -5,7 +5,24 @@ export default {
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
extend: {
colors: {
dracula: {
darker: '#21222c',
dark: '#282a36',
currentLine: '#44475a',
foreground: '#f8f8f2',
comment: '#6272a4',
cyan: '#8be9fd',
green: '#50fa7b',
orange: '#ffb86c',
pink: '#ff79c6',
purple: '#bd93f9',
red: '#ff5544',
yellow: '#f1fa8c',
}
}
},
},
plugins: [],
}