variables.scss 824 Bytes
Newer Older
1
/*
2 3
 * General Colors
 */
4
$style_color: #474D57;
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
5
$hover: #FFF3EB;
6
$box_bg: #F9F9F9;
7

8 9 10 11
/*
 * Link colors
 */
$link_color: #446e9b;
12
$link_hover_color: darken($link-color, 10%);
13

Ciro Santilli's avatar
Ciro Santilli committed
14 15
$btn-border: 1px solid #ccc;

16 17 18
/*
 * Success colors (green)
 */
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
19 20
$border_success: #019875;
$bg_success: #019875;
21 22 23 24 25 26 27 28 29 30

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

/*
 * Primary colors (blue)
 */
31 32
$border_primary: #446e9b;
$bg_primary: #446e9b;
33

34 35 36
/*
 * Warning colors (yellow)
 */
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
37 38
$bg_warning: #EB9532;
$border_warning: #EB9532;
39

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

/**
47
 * NProgress customize
48
 */
49
$nprogress-color: #c0392b;
50 51 52 53 54

/**
 * Font sizes
 */
$list-font-size: 15px;
55 56 57 58

/**
 * Sidebar navigation width
 */
59
$sidebar_width: 230px;
60 61

$avatar_radius: 50%;
62
$code_font_size: 13px;
63
$code_line_height: 1.5;