BigW Consortium Gitlab

variables.scss 564 Bytes
Newer Older
1
/*
2 3
 * General Colors
 */
4
$style_color: #474D57;
5
$hover: #D9EDF7;
6

7 8 9 10 11 12
/*
 * Link colors
 */
$link_color: #446e9b;
$link_hover_color: #2FA0BB;

13 14 15
/*
 * Success colors (green)
 */
Dmitriy Zaporozhets committed
16 17
$border_success: #019875;
$bg_success: #019875;
18 19 20 21 22 23 24 25 26 27

/*
 * Danger colors (red)
 */
$border_danger: #d43f3a;
$bg_danger: #d9534f;

/*
 * Primary colors (blue)
 */
28 29
$border_primary: #446e9b;
$bg_primary: #446e9b;
30

31 32 33
/*
 * Warning colors (yellow)
 */
Dmitriy Zaporozhets committed
34 35
$bg_warning: #EB9532;
$border_warning: #EB9532;
36

37 38 39 40 41
/**
 * Commit Diff Colors
 */
$added: #63c363;
$deleted: #f77;
42 43 44 45 46

/**
 *
 */
$nprogress-color: #3498db;