-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_default_light.scss
More file actions
48 lines (44 loc) · 2.08 KB
/
Copy path_default_light.scss
File metadata and controls
48 lines (44 loc) · 2.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/* ==========================================================================
DEFAULT THEME - LIGHT VERSION
========================================================================== */
/* Color codes used for the theme */
$primary-color : #2f7f93;
$gray : #7a8288;
$dark-gray : mix(#000, $gray, 40%);
$darker-gray : mix(#000, $gray, 60%);
$light-gray : mix(#fff, $gray, 50%);
$lighter-gray : mix(#fff, $gray, 90%);
/* Color codes used for the site */
$danger-color : #ee5f5b;
$info-color : #2f7f93;
$notice-color : #7a8288;
$success-color : #62c462;
$warning-color : #f89406;
/* Other basic settings for the template */
$border-radius : 4px;
$box-shadow : 0 1px 1px rgba(0, 0, 0, 0.125);
$global-transition : all 0.2s ease-in-out;
$masthead-height : 70px;
$navicon-width : 28px;
$navicon-height : 4px;
$sidebar-link-max-width : 250px;
$sidebar-screen-min-width : 1024px;
/* Default light theme for the site */
:root {
--global-base-color : #{$primary-color};
--global-bg-color : #fff;
--global-footer-bg-color : #f2f3f3;
--global-border-color : #{$lighter-gray};
--global-dark-border-color : #bdc1c4;
--global-code-background-color : #fafafa;
--global-code-text-color : #{$darker-gray};
--global-fig-caption-color : mix(#fff, #{$dark-gray}, 25%);
--global-link-color : #52adc8;
--global-link-color-hover : mix(#000, #2f7f93, 25%);
--global-link-color-visited : mix(#fff, #2f7f93, 25%);
--global-masthead-link-color : #{$dark-gray};
--global-masthead-link-color-hover : mix(#000, #{$gray}, 25%);
--global-text-color : #{$dark-gray};
--global-text-color-light : #{$light-gray};
--global-thead-color : #{$lighter-gray};
}