1
0
mirror of https://github.com/kognise/water.css.git synced 2025-08-19 11:21:22 +02:00

creation and implementation of selection variable

This commit is contained in:
Sidak Singh Aulakh
2019-04-30 01:57:20 +05:30
parent 770040da41
commit dd684c50e6
11 changed files with 30 additions and 6 deletions

View File

@@ -1,6 +1,8 @@
$background: #202b38 !default;
$background-alt: #161f27 !default;
$selection: #161f27 !default;
$text-main: #dbdbdb !default;
$text-bright: #ffffff !default;

View File

@@ -1,6 +1,8 @@
$background: #ffffff !default;
$background-alt: #efefef !default;
$selection: #9e9e9e !default;
$text-main: #363636 !default;
$text-bright: #000000 !default;

View File

@@ -43,4 +43,8 @@ tbody tr:nth-child(even) {
::-webkit-scrollbar-thumb:hover {
background: $scrollbar-thumb-hover;
}
::selection {
background-color: $selection;
}