34 lines
820 B
SCSS
34 lines
820 B
SCSS
|
// Copyright (C) 2020 Storj Labs, Inc.
|
||
|
// See LICENSE for copying information.
|
||
|
|
||
|
:root {
|
||
|
// colors
|
||
|
--c-title: #131d3a;
|
||
|
--c-gray: #74777e;
|
||
|
--c-label: #586474;
|
||
|
--c-placeholder: #a2aebe;
|
||
|
--c-background: #f4f6f9;
|
||
|
--c-line: #131d3a;
|
||
|
--c-gray--light: #e1e3e6;
|
||
|
--c-primary: #0059d0;
|
||
|
--c-error: #eb5757;
|
||
|
--c-success: #04b978;
|
||
|
--c-warning: #f4b740;
|
||
|
--c-button-label: white;
|
||
|
--c-button-common: #2683ff;
|
||
|
--c-button-common-hover: #196cda;
|
||
|
--c-button-white: transparent;
|
||
|
--c-button-white--label: #354049;
|
||
|
--c-button-white-hover: #ededed;
|
||
|
--c-button-red: #ff4f4d;
|
||
|
--c-button-red-hover: #de3e3d;
|
||
|
--c-button-disabled: #dadde5;
|
||
|
|
||
|
// borders
|
||
|
--b-button-white: 1px solid #afb7c1;
|
||
|
|
||
|
// border radiuses
|
||
|
--br-button: 6px;
|
||
|
--br-input: 6px;
|
||
|
}
|