From 74319cf070306b2aec9ef0a880276e175b149cf8 Mon Sep 17 00:00:00 2001 From: Toastie Date: Wed, 18 Oct 2023 05:14:59 -0700 Subject: [PATCH] Upload files to "/" --- tailwind.config.cjs | 34 ++++++++++++++++++++++++++++++++++ tsconfig.json | 3 +++ 2 files changed, 37 insertions(+) create mode 100644 tailwind.config.cjs create mode 100644 tsconfig.json diff --git a/tailwind.config.cjs b/tailwind.config.cjs new file mode 100644 index 0000000..3cff832 --- /dev/null +++ b/tailwind.config.cjs @@ -0,0 +1,34 @@ +/** @type {import('tailwindcss').Config} */ +module.exports = { + content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"], + theme: { + extend: { + colors: { + customPrimary: "rgb(97, 77, 226)", + customSecondary: "rgb(158, 145, 237)", + customDarkBg1: "rgb(31, 32, 35)", + customDarkBg2: "rgb(38, 39, 43)", + customDarkBg3: "rgb(48, 49, 54)", + customDarkBg3Hover: "rgb(55, 56, 62)", + customContentSubtitle: "rgb(178, 184, 205)", + customGrayBorder: "rgb(255,255,255,0.1)", + customGrayText: "rgb(174, 178, 183)", + customDarkBgTransparent: "rgb(31, 32, 35, 0.7)", + customDarkBgTransparentDarker: "rgb(0,0,0,0.5)", + customDarkBgTransparentLighter: "rgb(48, 49, 54, 0.7)" + }, + fontFamily: { + Inter: "Inter", + }, + screens: { + xs: "530px", + sm: "640px", + md: "768px", + lg: "1024px", + xl: "1280px", + xll: "1400px", + "2xl": "1536px", + }, + }, + }, +}; diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..1a46b47 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,3 @@ +{ + "extends": "astro/tsconfigs/base" +} \ No newline at end of file