Some amazing CSS resources.
Dark Colors:
:root {
--bg-dark: rgb(23,23,23);
--margin-dark: #3b3a3a;
--secondary-bg-dark: rgba(38,38,38,.3);
--special-text: rgb(214, 187, 187);
--tertiary-background-color: #232325;
}
Utility Snippets:
/* this code removes blue section when someone click on image on mobile */
* {
-webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important;
-webkit-focus-ring-color: rgba(255, 255, 255, 0) !important;
outline: none !important;
}