Files
wonderwall/templates/tailwind.config.js
Trong Huu Nguyen a4b832839c feat(templates): make error page more generic and responsive
Co-authored-by: Morten Lied Johansen <morten.lied.johansen@nav.no>
2024-10-09 08:58:36 +02:00

38 lines
1.1 KiB
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./*.{html,js,gohtml}"],
plugins: [],
theme: {
extend: {
colors: {
primary: {
"50": "#FFE6E6",
"100": "#FFC2C2",
"200": "#F68282",
"300": "#F25C5C",
"400": "#DE2E2E",
"500": "#C30000",
"600": "#AD0000",
"700": "#8C0000",
"800": "#5C0000",
"900": "#260000",
"950": "#180000"
},
action: {
"50": "#E6F0FF",
"100": "#CCE1FF",
"200": "#99C3FF",
"300": "#66A5F4",
"400": "#3386E0",
"500": "#0067C5",
"600": "#0056B4",
"700": "#00459C",
"800": "#00347D",
"900": "#002252",
"950": "#00131A"
},
}
}
}
}