πŸ“š Personal bits of knowledge

fix: πŸ”— update contact link in README and adjust theming

Updated the contact URL in the README to use a more accurate domain. Replaced hex color values with rgb for the dark theme in CSS for improved color consistency. Added a new graphic file, handbook.png.

+9 -9
+1 -1
README.md
··· 6 6 7 7 - πŸ› οΈ Explore [this Handbook on GitHub](https://github.com/davidgasquez/handbook). Send a [Pull Request](https://github.com/davidgasquez/handbook/pulls) or [fill an issue](https://github.com/davidgasquez/handbok/issues) if you have any feedback! 8 8 - πŸ—ΊοΈ Explore any topic you find interesting on the left sidebar. 9 - - πŸ“£ [Reach out](https://davidgasquez.github.io/) if you want to chat! 9 + - πŸ“£ [Reach out](https://davidgasquez.com/) if you want to chat! 10 10 11 11 --- 12 12
handbook.png

This is a binary file and will not be displayed.

+8 -8
publish.css
··· 1 1 .theme-dark { 2 - --background-primary: #000000; 3 - --background-primary-alt: #000000; 4 - --background-secondary: #000000; 5 - --background-secondary-alt: #000000; 6 - --background-modifier-border: #333; 7 - --text-accent-hover: #D08770; 8 - --link-external-color: #D08770; 2 + --background-primary: rgb(10 10 10); 3 + --background-primary-alt: rgb(10 10 10); 4 + --background-secondary: rgb(10 10 10); 5 + --background-secondary-alt: rgb(10 10 10); 6 + --background-modifier-border: rgb(82 82 82); 7 + --text-accent-hover: rgb(202 138 4); 8 + --link-external-color: rgb(202 138 4); 9 9 --link-external-decoration: none; 10 - --link-color: #D08770; 10 + --link-color: rgb(202 138 4); 11 11 --link-decoration: none; 12 12 }