This repository has been archived on 2024-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
helseveileder/frontend/tailwind.config.js
haraldnilsen 4cd2ed9a8a added new form page
Co-authored-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>
2023-12-14 18:55:14 +01:00

16 lines
289 B
JavaScript

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