mirror of
https://github.com/kubeshark/kubeshark.git
synced 2026-04-06 18:57:30 +00:00
* no message * change local api path * generic entry list item + rename files and vars * entry detailed generic * fix api file * clean warnings * switch * empty lines * fix scroll to end feature Co-authored-by: Roee Gadot <roee.gadot@up9.com>
23 lines
614 B
SCSS
23 lines
614 B
SCSS
$main-background-color: white;
|
|
$header-background-color: #F7F9FC;
|
|
$data-background-color: #E9EBF8;
|
|
$font-color: #0C0B1A;
|
|
$secondary-font-color: rgba(0,0,0,0.5);
|
|
$blue-color: #205CF5;
|
|
$light-blue-color: #BCCEFD;
|
|
$success-color: #27AE60;
|
|
$failure-color: #EB5757;
|
|
$blue-gray: #494677;
|
|
|
|
:export {
|
|
mainBackgroundColor: $main-background-color;
|
|
headerBackgoundColor: $header-background-color;
|
|
fontColor: $font-color;
|
|
secondaryFontColor: $secondary-font-color;
|
|
blueColor: $blue-color;
|
|
lightBlueColor: $light-blue-color;
|
|
successColor: $success-color;
|
|
failureColor: $failure-color;
|
|
blueGray: $blue-gray;
|
|
}
|