Found some bugs with the connection creation modal. Need to work on the parsing and such with regex.
27 lines
469 B
JavaScript
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: [],
|
|
}
|
|
|