Files
gridfinity-calc/tailwind.config.js
w33ble dde699e3f4 feat: change to dark mode theme
based on dracula midnight colors
2026-01-11 20:36:59 -07:00

29 lines
588 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
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: [],
}