coracle/tailwind.config.cjs
2023-01-14 13:15:43 -08:00

25 lines
487 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{js,svelte}",
],
theme: {
extend: {},
colors: {
transparent: "transparent",
black: "#0f0f0e",
white: "#FFFCF2",
accent: "#EB5E28",
light: "#CCC5B9",
medium: "#403D39",
dark: "#252422",
danger: "#ff0000",
warning: "#ebd112",
success: "#37ab51",
placeholder: "#a19989",
},
},
plugins: [],
}