Re-add original styles
This commit is contained in:
parent
314110c5eb
commit
18b11857fb
12 changed files with 190 additions and 50 deletions
34
assets/tailwind.config.ts
Normal file
34
assets/tailwind.config.ts
Normal file
|
@ -0,0 +1,34 @@
|
|||
import colours from "tailwindcss/colors";
|
||||
import type { Config } from "tailwindcss";
|
||||
import typographyPlugin from "@tailwindcss/typography";
|
||||
|
||||
export default {
|
||||
content: ["./source/**/*.twig"],
|
||||
theme: {
|
||||
colors: {
|
||||
black: "#000",
|
||||
blue: {
|
||||
primary: "#24608A",
|
||||
400: "#60a5fa",
|
||||
},
|
||||
current: "currentColor",
|
||||
grey: colours.stone,
|
||||
inherit: "inherit",
|
||||
transparent: "transparent",
|
||||
white: "#fff",
|
||||
},
|
||||
|
||||
extend: {
|
||||
fontFamily: {
|
||||
sans: [
|
||||
"Roboto Condensed",
|
||||
"Arial",
|
||||
"Helvetica Neue",
|
||||
"Helvetica",
|
||||
"sans-serif",
|
||||
],
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [typographyPlugin],
|
||||
} satisfies Config;
|
Loading…
Add table
Add a link
Reference in a new issue