@@ -74,4 +112,4 @@
:global(body) {
@apply bg-[#FFF0F5];
}
-
\ No newline at end of file
+
diff --git a/src/lib/components/UserProfile.svelte b/src/lib/components/UserProfile.svelte
index 12263c3..9482f0e 100644
--- a/src/lib/components/UserProfile.svelte
+++ b/src/lib/components/UserProfile.svelte
@@ -1,17 +1,26 @@
-
+
Create Your Profile
-
@@ -79,6 +118,6 @@
\ No newline at end of file
+
diff --git a/tailwind.config.ts b/tailwind.config.ts
index c4bf235..267160f 100644
--- a/tailwind.config.ts
+++ b/tailwind.config.ts
@@ -14,49 +14,50 @@ const config: Config = {
}
},
extend: {
+ fontFamily: {
+ display: 'Overpass, ui-sans-serif',
+ heading: 'Encode Sans, ui-serif',
+ },
colors: {
- border: "hsl(var(--border) / )",
- input: "hsl(var(--input) / )",
- ring: "hsl(var(--ring) / )",
- background: "hsl(var(--background) / )",
- foreground: "hsl(var(--foreground) / )",
+ border: "hsl(240, 3.7%, 15.9%)",
+ input: "hsl(240, 3.7%, 15.9%)",
+ ring: "hsl(240, 4.9%, 83.9%)",
+ background: "hsl(240, 10%, 3.9%)",
+ foreground: "hsl(0, 0%, 98%)",
primary: {
- DEFAULT: "hsl(var(--primary) / )",
- foreground: "hsl(var(--primary-foreground) / )"
+ DEFAULT: "hsl(0, 0%, 98%)",
+ foreground: "hsl(240, 5.9%, 10%)",
},
secondary: {
- DEFAULT: "hsl(var(--secondary) / )",
- foreground: "hsl(var(--secondary-foreground) / )"
+ DEFAULT: "hsl(240, 3.7%, 15.9%)",
+ foreground: "hsl(0, 0%, 98%)",
},
destructive: {
- DEFAULT: "hsl(var(--destructive) / )",
- foreground: "hsl(var(--destructive-foreground) / )"
+ DEFAULT: "hsl(194, 97%, 45%)",
+ foreground: "hsl(0, 0%, 98%)",
},
muted: {
- DEFAULT: "hsl(var(--muted) / )",
- foreground: "hsl(var(--muted-foreground) / )"
+ DEFAULT: "hsl(240, 3.7%, 15.9%)",
+ foreground: "hsl(325, 80%, 56%)",
},
accent: {
- DEFAULT: "hsl(var(--accent) / )",
- foreground: "hsl(var(--accent-foreground) / )"
+ DEFAULT: "hsl(240, 3.7%, 15.9%)",
+ foreground: "hsl(0, 0%, 98%)",
},
popover: {
- DEFAULT: "hsl(var(--popover) / )",
- foreground: "hsl(var(--popover-foreground) / )"
+ DEFAULT: "hsl(240, 10%, 3.9%)",
+ foreground: "hsl(0, 0%, 98%)",
},
card: {
- DEFAULT: "hsl(var(--card) / )",
- foreground: "hsl(var(--card-foreground) / )"
- }
+ DEFAULT: "hsl(240, 10%, 3.9%)",
+ foreground: "hsl(0, 0%, 98%)",
+ },
},
borderRadius: {
- lg: "var(--radius)",
- md: "calc(var(--radius) - 2px)",
- sm: "calc(var(--radius) - 4px)"
+ lg: "0.5rem",
+ md: "calc(0.5rem - 2px)",
+ sm: "calc(0.5rem - 4px)",
},
- fontFamily: {
- sans: [...fontFamily.sans]
- }
}
},
};