Web-Database-Viewer/tailwind.config.js
Azpect3120 9820ecac64 FEAT: Some work on the tree
Found some bugs with the connection creation modal. Need to work on the
parsing and such with regex.
2024-08-09 13:50:07 -07:00

27 lines
469 B
JavaScript

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