coracle/tailwind.config.cjs

31 lines
580 B
JavaScript
Raw Normal View History

2022-11-23 01:28:33 +00:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{js,svelte}",
],
2023-02-23 15:10:48 +00:00
safelist: [
"w-4",
"h-4",
],
2022-11-23 01:28:33 +00:00
theme: {
extend: {},
colors: {
transparent: "transparent",
2022-11-24 19:47:03 +00:00
black: "#0f0f0e",
2022-11-23 01:28:33 +00:00
white: "#FFFCF2",
accent: "#EB5E28",
accentl: "#EE7648",
2022-11-23 01:28:33 +00:00
light: "#CCC5B9",
2023-03-03 22:52:46 +00:00
shimmer: "#544e46",
2022-11-24 19:47:03 +00:00
medium: "#403D39",
dark: "#252422",
2022-11-30 18:26:58 +00:00
danger: "#ff0000",
2023-01-14 21:15:43 +00:00
warning: "#ebd112",
success: "#37ab51",
2023-01-14 17:12:52 +00:00
placeholder: "#a19989",
2022-11-23 01:28:33 +00:00
},
},
plugins: [],
}