mirror of
https://github.com/ivabus/gui
synced 2025-04-24 14:37:11 +03:00

* #417 prune init * #417 prune package: delete pkg version * bump v0.0.26 --------- Co-authored-by: neil molina <neil@neils-MacBook-Pro.local>
46 lines
786 B
JavaScript
46 lines
786 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
const teal = "#00ffd0";
|
|
const black = "#1a1a1a";
|
|
const white = "#fff";
|
|
const gray = "#949494";
|
|
const purple = "#8000FF";
|
|
const green = "#00A517";
|
|
const blue = "#013B99";
|
|
|
|
module.exports = {
|
|
content: ["./src/**/*.{html,js,svelte,ts}"],
|
|
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")]
|
|
};
|