mirror of
https://github.com/ivabus/gui
synced 2025-04-23 14:07:14 +03:00

* remove unused components * remove pnpm * implementation of local dev pantry setup (#689)
50 lines
1.1 KiB
JavaScript
50 lines
1.1 KiB
JavaScript
const teal = "#00ffd0";
|
|
const black = "#1a1a1a";
|
|
const white = "#fff";
|
|
const gray = "#949494";
|
|
const purple = "#8000FF";
|
|
const green = "#00A517";
|
|
const blue = "#013B99";
|
|
|
|
module.exports = {
|
|
plugins: {
|
|
tailwindcss: {
|
|
content: ["./src/**/*.{html,svelte,ts,js}", "../ui/src/**/*.{html,svelte,ts,js}"],
|
|
theme: {
|
|
colors: {
|
|
primary: teal,
|
|
secondary: purple,
|
|
accent: purple,
|
|
green,
|
|
teal,
|
|
blue,
|
|
purple: {
|
|
700: purple,
|
|
900: "#B076EC"
|
|
},
|
|
black,
|
|
white,
|
|
gray
|
|
},
|
|
extend: {
|
|
fontFamily: {
|
|
inter: ["inter", "sans-serif"],
|
|
mona: ["mona-sans", "sans-serif"]
|
|
},
|
|
typography: {
|
|
excerpt: {
|
|
css: {
|
|
p: {
|
|
fontFamily: "font-inter",
|
|
fontSize: "font-2xl"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
plugins: [require("@tailwindcss/line-clamp")]
|
|
},
|
|
autoprefixer: {}
|
|
}
|
|
};
|