gui/modules/ui/tailwind.config.cjs
Neil c5a3a72948
#301 init home page with side nav (#302)
* #301 init home page with side nav

* #301 filter by state and sort

* #301 update package cards layout

---------

Co-authored-by: neil <neil@neils-MacBook-Pro.local>
2023-03-16 09:24:48 +08:00

44 lines
762 B
JavaScript

/** @type {import('tailwindcss').Config} */
const teal = "#00ffd0";
const black = "#1a1a1a";
const white = "#fff";
const gray = "#949494";
const purple = "#8000FF";
const green = "#00A517";
module.exports = {
content: ["./src/**/*.{html,js,svelte,ts}"],
theme: {
colors: {
primary: teal,
secondary: purple,
accent: purple,
green,
teal,
purple: {
700: purple,
900: "#B076EC"
},
black,
white,
gray
},
extend: {
fontFamily: {
sono: ["sono", "sans-serif"],
machina: ["pp-neue-machina", "sans-serif"]
},
typography: {
excerpt: {
css: {
p: {
fontFamily: "font-machina",
fontSize: "font-2xl"
}
}
}
}
}
},
plugins: [require("@tailwindcss/line-clamp")]
};