added new form page

Co-authored-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>
This commit is contained in:
haraldnilsen 2023-12-12 20:36:17 +01:00
parent 5a71b084f5
commit 4cd2ed9a8a
4 changed files with 36 additions and 15 deletions

View file

@ -1,15 +1,16 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{html,js,svelte,ts}"],
theme: {
extend: {
colors: {
primary: "#08667C",
secondary: "#CED9DD",
content: "#121212",
bg: "#EEF0F3",
},
},
},
plugins: [],
content: ["./src/**/*.{html,js,svelte,ts}"],
theme: {
extend: {
colors: {
primary: "#08667C",
secondary: "#CED9DD",
content: "#121212",
bg: "#EEF0F3",
error: "#964747",
},
},
},
plugins: [],
};