diff --git a/src/lib/PatternBackground.svelte b/src/lib/PatternBackground.svelte new file mode 100644 index 0000000..2b48b73 --- /dev/null +++ b/src/lib/PatternBackground.svelte @@ -0,0 +1,97 @@ + + +
(isMouseOver = false)} + on:mousemove={({ clientX, clientY }) => { + isMouseOver = true + mouse$.next([clientX, clientY]) + }} + aria-hidden + bind:this={wrapperElement} +> +
+ + + + + + + + + +
+ + diff --git a/src/lib/components/Title.svelte b/src/lib/components/Title.svelte index a69f117..73b05fb 100755 --- a/src/lib/components/Title.svelte +++ b/src/lib/components/Title.svelte @@ -4,17 +4,19 @@
-

+

No title given!!!

-
+
+ +
diff --git a/src/routes/FeaturesSlice.svelte b/src/routes/FeaturesSlice.svelte index 7a2ff32..f4d1550 100755 --- a/src/routes/FeaturesSlice.svelte +++ b/src/routes/FeaturesSlice.svelte @@ -48,7 +48,7 @@ } -
+
<span slot="pre">TLDR</span> <span slot="title">Features</span> @@ -134,7 +134,7 @@ </FeatureCard> </div> - <div class="z-10 mt-14 flex flex-col flex-wrap justify-center gap-8 sm:flex-row"> + <div class="z-10 mt-14 flex flex-col flex-wrap justify-center gap-8 text-lg sm:flex-row"> <a href="https://github.com/hyprland-community/awesome-hyprland#plugins" target="_blank" diff --git a/tailwind.config.js b/tailwind.config.js index aadb0c9..780fc2c 100755 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -5,7 +5,7 @@ export default { content: ['./src/**/*.{html,js,svelte,ts}'], theme: { extend: { - colors: { black: '#0D0E0F', primary: '#58E1FF', secondary: '#00A2F8' }, + colors: { black: '#0b0d0e', primary: '#58E1FF', secondary: '#00A2F8' }, fontFamily: { ...fontFamily, sans: ['Work Sans Variable', ...fontFamily['sans']],