feat: add theming

This commit is contained in:
Stevan Freeborn
2023-09-09 21:39:08 -05:00
parent 272355d9a0
commit 4b6fec0841
11 changed files with 141 additions and 30 deletions
+3
View File
@@ -1,6 +1,7 @@
import type { Config } from 'tailwindcss';
const config: Config = {
darkMode: 'class',
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
@@ -9,6 +10,8 @@ const config: Config = {
theme: {
extend: {
colors: {
'primary-gray': '#24272d',
'secondary-gray': '#2f333a',
'primary-accent': '#3743e5',
},
},