Move all files to sculpin/
This commit is contained in:
parent
c5d71803a5
commit
0f61b4e9ee
1514 changed files with 0 additions and 0 deletions
11
sculpin/assets/css/tailwind.css
Normal file
11
sculpin/assets/css/tailwind.css
Normal file
|
@ -0,0 +1,11 @@
|
|||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
||||
@layer base {
|
||||
@font-face {
|
||||
font-family: Roboto Condensed;
|
||||
font-weight: 300 400 500 700;
|
||||
src: url('../assets/fonts/RobotoCondensed-VariableFont_wght.ttf') format('truetype');
|
||||
}
|
||||
}
|
38
sculpin/assets/tailwind.config.ts
Normal file
38
sculpin/assets/tailwind.config.ts
Normal file
|
@ -0,0 +1,38 @@
|
|||
import colours from "tailwindcss/colors";
|
||||
import type { Config } from "tailwindcss";
|
||||
import formsPlugin from '@tailwindcss/forms';
|
||||
import typographyPlugin from "@tailwindcss/typography";
|
||||
|
||||
export default {
|
||||
content: [
|
||||
"../app/config/**/*.yml",
|
||||
"../source/**/*.{md,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: [formsPlugin, typographyPlugin],
|
||||
} satisfies Config;
|
Loading…
Add table
Add a link
Reference in a new issue