Web-Database-Viewer/tailwind.config.js
Azpect3120 111a6aead3 INIT: First commit, having session issues
Shocker! These sessions are stupid as hell. Going to try using gorilla
instead.
2024-08-06 21:40:04 -07:00

26 lines
436 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./web/templates/*.html",
"./web/templates/**/*.html"
],
darkMode: "class",
theme: {
extend: {
colors: {
primary: {
100: "#EF8275",
200: "#98023E",
},
secondary: {
100: "#E6E6E6",
200: "#808D8E",
300: "#1E2019",
},
},
},
},
plugins: [],
}