diff --git a/index.html b/index.html index 54b6ac3..2588b13 100644 --- a/index.html +++ b/index.html @@ -11,19 +11,83 @@ sizes="32x32" href="/images/favicon-32x32.png" /> - + + -

Jessica Randall

-

London, United Kingdom

-

"Front-end developer and avid reader."

+
+
+ Jessica's picture - +
+

Jessica Randall

+

London, United Kingdom

+
+ +

"Front-end developer and avid reader."

+ + +
+
diff --git a/package.json b/package.json index 4e14e53..42a64ed 100644 --- a/package.json +++ b/package.json @@ -12,6 +12,11 @@ "tailwindcss": "^3.4.4", "vite": "^5.3.2" }, + "prettier": { + "plugins": [ + "prettier-plugin-tailwindcss" + ] + }, "postcss": { "plugins": { "tailwindcss": {}, diff --git a/tailwind.config.js b/tailwind.config.js index 8d8e5ab..fc6e6d0 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,7 +1,38 @@ export default { content: ["index.html"], theme: { - extend: {}, + colors: { + "dark-grey": "#1F1F1F", + "neon-green": "#C4F82A", + black: "#141414", + grey: "#333333", + white: "#FFFFFF", + }, + fontFamily: { + sans: ["Inter", "sans-serif"], + }, + fontSize: { + heading: [ + "1.5rem", + { + lineHeight: "150%", + fontWeight: "600", + }, + ], + "body-regular": [ + "0.875rem", + { + lineHeight: "150%", + fontWeight: "400", + }, + ], + "body-bold": [ + "0.875rem", + { + lineHeight: "150%", + fontWeight: "700", + }, + ], + }, }, - plugins: [], };