- {/* Illustration taken from Lucid Illustrations: https://lucid.pixsellz.io/ */}
diff --git a/site/styles/global.css b/site/styles/global.css
new file mode 100644
index 0000000..0387224
--- /dev/null
+++ b/site/styles/global.css
@@ -0,0 +1,29 @@
+@tailwind base;
+@tailwind components;
+@tailwind utilities;
+
+/* FONTS */
+
+@layer base {
+ h1, h2, h3, h4, h5 {
+ @apply font-sans;
+ }
+}
+
+/* OTHERS */
+
+html {
+ scroll-behavior: smooth;
+}
+
+/* bg-neutral-800
+ @apply bg-slate-800
+*/
+body {
+ @apply bg-slate-900;
+ @apply text-slate-400;
+}
+
+.extra-small {
+ font-size: 0.50rem;
+}
diff --git a/site/tailwind.config.js b/site/tailwind.config.js
index e1da14a..6bd19f5 100644
--- a/site/tailwind.config.js
+++ b/site/tailwind.config.js
@@ -10,9 +10,13 @@ module.exports = {
theme: {
extend: {
fontFamily: {
- nunito: ["Nunito Sans", ...defaultTheme.fontFamily.sans],
+ sans: ["Inter", ...defaultTheme.fontFamily.sans],
serif: ["Restora", ...defaultTheme.fontFamily.serif],
},
+ colors: {
+ // life itself yellow
+ 'yellow-li': '#f0ca5e'
+ }
},
},
variants: {