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

17 lines
289 B
JavaScript
Raw Normal View History

/** @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: [],
};