From 33673d7dcdbb6e8e700311069d7c733ad44c0f3c Mon Sep 17 00:00:00 2001 From: fountainpen Date: Mon, 25 Sep 2023 17:02:03 +0200 Subject: [PATCH 1/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8f88be8..de46050 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ ## Getting started -**AstroWind** tries to give you quick access to creating a website using [Astro 3.0](https://astro.build/) + [Tailwind CSS](https://tailwindcss.com/). It's a free theme focuses on simplicity, good practices and high performance. +**AstroWind** tries to give you quick access to creating a website using [Astro 3.0](https://astro.build/) + [Tailwind CSS](https://tailwindcss.com/). It's a free theme which focuses on simplicity, good practices and high performance. Very little vanilla javascript is used only to provide basic functionality so that each developer decides which framework (React, Vue, Svelte, Solid JS...) to use and how to approach their goals.. From 4e685493a67d444e33d2305ea8888b9319332fd1 Mon Sep 17 00:00:00 2001 From: fountainpen Date: Mon, 25 Sep 2023 17:06:37 +0200 Subject: [PATCH 2/2] Update CustomStyles.astro --- src/components/CustomStyles.astro | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/components/CustomStyles.astro b/src/components/CustomStyles.astro index 11254ef..04a2d13 100644 --- a/src/components/CustomStyles.astro +++ b/src/components/CustomStyles.astro @@ -35,6 +35,9 @@ import '@fontsource-variable/inter'; --aw-color-bg-page: rgb(255 255 255); --aw-color-bg-page-dark: rgb(3 6 32); + + ::selection {background-color: lavender;} + } .dark { @@ -50,5 +53,8 @@ import '@fontsource-variable/inter'; --aw-color-text-default: rgb(229 236 246); --aw-color-text-muted: rgb(229 236 246 / 66%); --aw-color-bg-page: var(--aw-color-bg-page-dark); + + ::selection {background-color: black; color: snow} + } - \ No newline at end of file +