geekspace 3.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE +21 -0
- data/README.md +15 -0
- data/_includes/comments.html +28 -0
- data/_includes/foot.html +11 -0
- data/_includes/footer.html +5 -0
- data/_includes/head.html +99 -0
- data/_includes/header.html +3 -0
- data/_includes/intro.html +6 -0
- data/_includes/nav.html +17 -0
- data/_includes/pagination.html +23 -0
- data/_includes/post-share.html +8 -0
- data/_layouts/compress.html +11 -0
- data/_layouts/default.html +12 -0
- data/_layouts/home.html +47 -0
- data/_layouts/page.html +12 -0
- data/_layouts/post.html +16 -0
- data/_sass/_layout.scss +364 -0
- data/_sass/_syntax-highlighting.scss +96 -0
- data/_sass/_variables.scss +47 -0
- data/_sass/base/_base.scss +11 -0
- data/_sass/base/_buttons.scss +37 -0
- data/_sass/base/_forms.scss +90 -0
- data/_sass/base/_lists.scss +31 -0
- data/_sass/base/_reset.scss +54 -0
- data/_sass/base/_tables.scss +25 -0
- data/_sass/base/_typography.scss +139 -0
- data/_sass/bourbon/_bourbon.scss +54 -0
- data/_sass/bourbon/bourbon/helpers/_buttons-list.scss +14 -0
- data/_sass/bourbon/bourbon/helpers/_scales.scss +27 -0
- data/_sass/bourbon/bourbon/helpers/_text-inputs-list.scss +26 -0
- data/_sass/bourbon/bourbon/library/_border-color.scss +26 -0
- data/_sass/bourbon/bourbon/library/_border-radius.scss +85 -0
- data/_sass/bourbon/bourbon/library/_border-style.scss +25 -0
- data/_sass/bourbon/bourbon/library/_border-width.scss +25 -0
- data/_sass/bourbon/bourbon/library/_buttons.scss +84 -0
- data/_sass/bourbon/bourbon/library/_clearfix.scss +25 -0
- data/_sass/bourbon/bourbon/library/_contrast-switch.scss +81 -0
- data/_sass/bourbon/bourbon/library/_ellipsis.scss +36 -0
- data/_sass/bourbon/bourbon/library/_font-face.scss +65 -0
- data/_sass/bourbon/bourbon/library/_font-stacks.scss +248 -0
- data/_sass/bourbon/bourbon/library/_hide-text.scss +24 -0
- data/_sass/bourbon/bourbon/library/_hide-visually.scss +70 -0
- data/_sass/bourbon/bourbon/library/_margin.scss +37 -0
- data/_sass/bourbon/bourbon/library/_modular-scale.scss +120 -0
- data/_sass/bourbon/bourbon/library/_overflow-wrap.scss +25 -0
- data/_sass/bourbon/bourbon/library/_padding.scss +36 -0
- data/_sass/bourbon/bourbon/library/_position.scss +62 -0
- data/_sass/bourbon/bourbon/library/_prefixer.scss +37 -0
- data/_sass/bourbon/bourbon/library/_shade.scss +32 -0
- data/_sass/bourbon/bourbon/library/_size.scss +50 -0
- data/_sass/bourbon/bourbon/library/_strip-unit.scss +17 -0
- data/_sass/bourbon/bourbon/library/_text-inputs.scss +163 -0
- data/_sass/bourbon/bourbon/library/_timing-functions.scss +36 -0
- data/_sass/bourbon/bourbon/library/_tint.scss +32 -0
- data/_sass/bourbon/bourbon/library/_triangle.scss +82 -0
- data/_sass/bourbon/bourbon/library/_value-prefixer.scss +37 -0
- data/_sass/bourbon/bourbon/settings/_settings.scss +75 -0
- data/_sass/bourbon/bourbon/utilities/_assign-inputs.scss +28 -0
- data/_sass/bourbon/bourbon/utilities/_compact-shorthand.scss +42 -0
- data/_sass/bourbon/bourbon/utilities/_contrast-ratio.scss +31 -0
- data/_sass/bourbon/bourbon/utilities/_directional-property.scss +68 -0
- data/_sass/bourbon/bourbon/utilities/_fetch-bourbon-setting.scss +16 -0
- data/_sass/bourbon/bourbon/utilities/_font-source-declaration.scss +52 -0
- data/_sass/bourbon/bourbon/utilities/_gamma.scss +24 -0
- data/_sass/bourbon/bourbon/utilities/_lightness.scss +24 -0
- data/_sass/bourbon/bourbon/utilities/_unpack-shorthand.scss +29 -0
- data/_sass/bourbon/bourbon/validators/_contains-falsy.scss +20 -0
- data/_sass/bourbon/bourbon/validators/_contains.scss +26 -0
- data/_sass/bourbon/bourbon/validators/_is-color.scss +13 -0
- data/_sass/bourbon/bourbon/validators/_is-length.scss +20 -0
- data/_sass/bourbon/bourbon/validators/_is-number.scss +15 -0
- data/_sass/bourbon/bourbon/validators/_is-size.scss +18 -0
- data/_sass/geekspace.scss +8 -0
- data/assets/css/main.scss +5 -0
- data/assets/icons/FontAwesome/FontAwesome.otf +0 -0
- data/assets/icons/FontAwesome/fontawesome-webfont.eot +0 -0
- data/assets/icons/FontAwesome/fontawesome-webfont.svg +685 -0
- data/assets/icons/FontAwesome/fontawesome-webfont.ttf +0 -0
- data/assets/icons/FontAwesome/fontawesome-webfont.woff +0 -0
- data/assets/icons/FontAwesome/fontawesome-webfont.woff2 +0 -0
- data/assets/images/author.jpg +0 -0
- data/assets/images/cover.jpg +0 -0
- data/assets/images/logo.jpg +0 -0
- metadata +233 -0
@@ -0,0 +1,54 @@
|
|
1
|
+
// Bourbon 7.0.0
|
2
|
+
// https://www.bourbon.io/
|
3
|
+
// Copyright 2011-2020 thoughtbot, inc.
|
4
|
+
// MIT License
|
5
|
+
|
6
|
+
@import "bourbon/helpers/buttons-list";
|
7
|
+
@import "bourbon/helpers/scales";
|
8
|
+
@import "bourbon/helpers/text-inputs-list";
|
9
|
+
|
10
|
+
@import "bourbon/settings/settings";
|
11
|
+
|
12
|
+
@import "bourbon/validators/contains";
|
13
|
+
@import "bourbon/validators/contains-falsy";
|
14
|
+
@import "bourbon/validators/is-color";
|
15
|
+
@import "bourbon/validators/is-length";
|
16
|
+
@import "bourbon/validators/is-number";
|
17
|
+
@import "bourbon/validators/is-size";
|
18
|
+
|
19
|
+
@import "bourbon/utilities/assign-inputs";
|
20
|
+
@import "bourbon/utilities/compact-shorthand";
|
21
|
+
@import "bourbon/utilities/directional-property";
|
22
|
+
@import "bourbon/utilities/fetch-bourbon-setting";
|
23
|
+
@import "bourbon/utilities/font-source-declaration";
|
24
|
+
@import "bourbon/utilities/gamma";
|
25
|
+
@import "bourbon/utilities/lightness";
|
26
|
+
@import "bourbon/utilities/contrast-ratio";
|
27
|
+
@import "bourbon/utilities/unpack-shorthand";
|
28
|
+
|
29
|
+
@import "bourbon/library/border-color";
|
30
|
+
@import "bourbon/library/border-radius";
|
31
|
+
@import "bourbon/library/border-style";
|
32
|
+
@import "bourbon/library/border-width";
|
33
|
+
@import "bourbon/library/buttons";
|
34
|
+
@import "bourbon/library/clearfix";
|
35
|
+
@import "bourbon/library/contrast-switch";
|
36
|
+
@import "bourbon/library/ellipsis";
|
37
|
+
@import "bourbon/library/font-face";
|
38
|
+
@import "bourbon/library/font-stacks";
|
39
|
+
@import "bourbon/library/hide-text";
|
40
|
+
@import "bourbon/library/hide-visually";
|
41
|
+
@import "bourbon/library/margin";
|
42
|
+
@import "bourbon/library/modular-scale";
|
43
|
+
@import "bourbon/library/overflow-wrap";
|
44
|
+
@import "bourbon/library/padding";
|
45
|
+
@import "bourbon/library/position";
|
46
|
+
@import "bourbon/library/prefixer";
|
47
|
+
@import "bourbon/library/shade";
|
48
|
+
@import "bourbon/library/size";
|
49
|
+
@import "bourbon/library/strip-unit";
|
50
|
+
@import "bourbon/library/text-inputs";
|
51
|
+
@import "bourbon/library/timing-functions";
|
52
|
+
@import "bourbon/library/tint";
|
53
|
+
@import "bourbon/library/triangle";
|
54
|
+
@import "bourbon/library/value-prefixer";
|
@@ -0,0 +1,27 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
|
3
|
+
////
|
4
|
+
/// Pre-defined scales for use with the `modular-scale` function.
|
5
|
+
///
|
6
|
+
/// @type number (unitless)
|
7
|
+
///
|
8
|
+
/// @see {function} modular-scale
|
9
|
+
////
|
10
|
+
|
11
|
+
$minor-second: 1.067;
|
12
|
+
$major-second: 1.125;
|
13
|
+
$minor-third: 1.2;
|
14
|
+
$major-third: 1.25;
|
15
|
+
$perfect-fourth: 1.333;
|
16
|
+
$augmented-fourth: 1.414;
|
17
|
+
$perfect-fifth: 1.5;
|
18
|
+
$minor-sixth: 1.6;
|
19
|
+
$golden: 1.618;
|
20
|
+
$major-sixth: 1.667;
|
21
|
+
$minor-seventh: 1.778;
|
22
|
+
$major-seventh: 1.875;
|
23
|
+
$octave: 2;
|
24
|
+
$major-tenth: 2.5;
|
25
|
+
$major-eleventh: 2.667;
|
26
|
+
$major-twelfth: 3;
|
27
|
+
$double-octave: 4;
|
@@ -0,0 +1,26 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
|
3
|
+
/// A list of all _text-based_ HTML inputs.
|
4
|
+
///
|
5
|
+
/// @type list
|
6
|
+
///
|
7
|
+
/// @access private
|
8
|
+
|
9
|
+
$_text-inputs-list: (
|
10
|
+
"[type='color']",
|
11
|
+
"[type='date']",
|
12
|
+
"[type='datetime']",
|
13
|
+
"[type='datetime-local']",
|
14
|
+
"[type='email']",
|
15
|
+
"[type='month']",
|
16
|
+
"[type='number']",
|
17
|
+
"[type='password']",
|
18
|
+
"[type='search']",
|
19
|
+
"[type='tel']",
|
20
|
+
"[type='text']",
|
21
|
+
"[type='time']",
|
22
|
+
"[type='url']",
|
23
|
+
"[type='week']",
|
24
|
+
"input:not([type])",
|
25
|
+
"textarea",
|
26
|
+
);
|
@@ -0,0 +1,26 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
|
3
|
+
/// Provides a concise, one-line method for setting `border-color` on specific
|
4
|
+
/// edges of a box. Use a `null` value to “skip” edges of the box with standard
|
5
|
+
/// CSS shorthand.
|
6
|
+
///
|
7
|
+
/// @argument {list} $values
|
8
|
+
/// List of colors; accepts CSS shorthand.
|
9
|
+
///
|
10
|
+
/// @example scss
|
11
|
+
/// .element {
|
12
|
+
/// @include border-color(#a60b55 #76cd9c null #e8ae1a);
|
13
|
+
/// }
|
14
|
+
///
|
15
|
+
/// // CSS Output
|
16
|
+
/// .element {
|
17
|
+
/// border-left-color: #e8ae1a;
|
18
|
+
/// border-right-color: #76cd9c;
|
19
|
+
/// border-top-color: #a60b55;
|
20
|
+
/// }
|
21
|
+
///
|
22
|
+
/// @require {mixin} _directional-property
|
23
|
+
|
24
|
+
@mixin border-color($values) {
|
25
|
+
@include _directional-property(border, color, $values);
|
26
|
+
}
|
@@ -0,0 +1,85 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
|
3
|
+
/// Provides a concise, one-line method for setting `border-radius` on both the
|
4
|
+
/// top-left and top-right of a box.
|
5
|
+
///
|
6
|
+
/// @argument {number (with unit)} $radii
|
7
|
+
///
|
8
|
+
/// @example scss
|
9
|
+
/// .element {
|
10
|
+
/// @include border-top-radius(4px);
|
11
|
+
/// }
|
12
|
+
///
|
13
|
+
/// // CSS Output
|
14
|
+
/// .element {
|
15
|
+
/// border-top-left-radius: 4px;
|
16
|
+
/// border-top-right-radius: 4px;
|
17
|
+
/// }
|
18
|
+
|
19
|
+
@mixin border-top-radius($radii) {
|
20
|
+
border-top-left-radius: $radii;
|
21
|
+
border-top-right-radius: $radii;
|
22
|
+
}
|
23
|
+
|
24
|
+
/// Provides a concise, one-line method for setting `border-radius` on both the
|
25
|
+
/// top-right and bottom-right of a box.
|
26
|
+
///
|
27
|
+
/// @argument {number (with unit)} $radii
|
28
|
+
///
|
29
|
+
/// @example scss
|
30
|
+
/// .element {
|
31
|
+
/// @include border-right-radius(3px);
|
32
|
+
/// }
|
33
|
+
///
|
34
|
+
/// // CSS Output
|
35
|
+
/// .element {
|
36
|
+
/// border-bottom-right-radius: 3px;
|
37
|
+
/// border-top-right-radius: 3px;
|
38
|
+
/// }
|
39
|
+
|
40
|
+
@mixin border-right-radius($radii) {
|
41
|
+
border-bottom-right-radius: $radii;
|
42
|
+
border-top-right-radius: $radii;
|
43
|
+
}
|
44
|
+
|
45
|
+
/// Provides a concise, one-line method for setting `border-radius` on both the
|
46
|
+
/// bottom-left and bottom-right of a box.
|
47
|
+
///
|
48
|
+
/// @argument {number (with unit)} $radii
|
49
|
+
///
|
50
|
+
/// @example scss
|
51
|
+
/// .element {
|
52
|
+
/// @include border-bottom-radius(2px);
|
53
|
+
/// }
|
54
|
+
///
|
55
|
+
/// // CSS Output
|
56
|
+
/// .element {
|
57
|
+
/// border-bottom-left-radius: 2px;
|
58
|
+
/// border-bottom-right-radius: 2px;
|
59
|
+
/// }
|
60
|
+
|
61
|
+
@mixin border-bottom-radius($radii) {
|
62
|
+
border-bottom-left-radius: $radii;
|
63
|
+
border-bottom-right-radius: $radii;
|
64
|
+
}
|
65
|
+
|
66
|
+
/// Provides a concise, one-line method for setting `border-radius` on both the
|
67
|
+
/// top-left and bottom-left of a box.
|
68
|
+
///
|
69
|
+
/// @argument {number (with unit)} $radii
|
70
|
+
///
|
71
|
+
/// @example scss
|
72
|
+
/// .element {
|
73
|
+
/// @include border-left-radius(1px);
|
74
|
+
/// }
|
75
|
+
///
|
76
|
+
/// // CSS Output
|
77
|
+
/// .element {
|
78
|
+
/// border-bottom-left-radius: 1px;
|
79
|
+
/// border-top-left-radius: 1px;
|
80
|
+
/// }
|
81
|
+
|
82
|
+
@mixin border-left-radius($radii) {
|
83
|
+
border-bottom-left-radius: $radii;
|
84
|
+
border-top-left-radius: $radii;
|
85
|
+
}
|
@@ -0,0 +1,25 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
|
3
|
+
/// Provides a concise, one-line method for setting `border-style` on specific
|
4
|
+
/// edges of a box. Use a `null` value to “skip” edges of the box with standard
|
5
|
+
/// CSS shorthand.
|
6
|
+
///
|
7
|
+
/// @argument {list} $values
|
8
|
+
/// List of border styles; accepts CSS shorthand.
|
9
|
+
///
|
10
|
+
/// @example scss
|
11
|
+
/// .element {
|
12
|
+
/// @include border-style(dashed null solid);
|
13
|
+
/// }
|
14
|
+
///
|
15
|
+
/// // CSS Output
|
16
|
+
/// .element {
|
17
|
+
/// border-bottom-style: solid;
|
18
|
+
/// border-top-style: dashed;
|
19
|
+
/// }
|
20
|
+
///
|
21
|
+
/// @require {mixin} _directional-property
|
22
|
+
|
23
|
+
@mixin border-style($values) {
|
24
|
+
@include _directional-property(border, style, $values);
|
25
|
+
}
|
@@ -0,0 +1,25 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
|
3
|
+
/// Provides a concise, one-line method for setting `border-width` on specific
|
4
|
+
/// edges of a box. Use a `null` value to “skip” edges of the box with standard
|
5
|
+
/// CSS shorthand.
|
6
|
+
///
|
7
|
+
/// @argument {list} $values
|
8
|
+
/// List of border widths; accepts CSS shorthand.
|
9
|
+
///
|
10
|
+
/// @example scss
|
11
|
+
/// .element {
|
12
|
+
/// @include border-width(1em null 20px);
|
13
|
+
/// }
|
14
|
+
///
|
15
|
+
/// // CSS Output
|
16
|
+
/// .element {
|
17
|
+
/// border-bottom-width: 20px;
|
18
|
+
/// border-top-width: 1em;
|
19
|
+
/// }
|
20
|
+
///
|
21
|
+
/// @require {mixin} _directional-property
|
22
|
+
|
23
|
+
@mixin border-width($values) {
|
24
|
+
@include _directional-property(border, width, $values);
|
25
|
+
}
|
@@ -0,0 +1,84 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
|
3
|
+
////
|
4
|
+
/// @type list
|
5
|
+
///
|
6
|
+
/// @require {function} _assign-inputs
|
7
|
+
///
|
8
|
+
/// @require {variable} $_buttons-list
|
9
|
+
////
|
10
|
+
|
11
|
+
/// A list of all HTML button elements. Please note that you must interpolate
|
12
|
+
/// the variable (`#{}`) to use it as a selector.
|
13
|
+
///
|
14
|
+
/// @example scss
|
15
|
+
/// #{$all-buttons} {
|
16
|
+
/// background-color: #f00;
|
17
|
+
/// }
|
18
|
+
///
|
19
|
+
/// // CSS Output
|
20
|
+
/// button,
|
21
|
+
/// [type='button'],
|
22
|
+
/// [type='reset'],
|
23
|
+
/// [type='submit'] {
|
24
|
+
/// background-color: #f00;
|
25
|
+
/// }
|
26
|
+
|
27
|
+
$all-buttons: _assign-inputs($_buttons-list);
|
28
|
+
|
29
|
+
/// A list of all HTML button elements with the `:active` pseudo-class applied.
|
30
|
+
/// Please note that you must interpolate the variable (`#{}`) to use it as a
|
31
|
+
/// selector.
|
32
|
+
///
|
33
|
+
/// @example scss
|
34
|
+
/// #{$all-buttons-active} {
|
35
|
+
/// background-color: #00f;
|
36
|
+
/// }
|
37
|
+
///
|
38
|
+
/// // CSS Output
|
39
|
+
/// button:active,
|
40
|
+
/// [type='button']:active,
|
41
|
+
/// [type='reset']:active,
|
42
|
+
/// [type='submit']:active {
|
43
|
+
/// background-color: #00f;
|
44
|
+
/// }
|
45
|
+
|
46
|
+
$all-buttons-active: _assign-inputs($_buttons-list, active);
|
47
|
+
|
48
|
+
/// A list of all HTML button elements with the `:focus` pseudo-class applied.
|
49
|
+
/// Please note that you must interpolate the variable (`#{}`) to use it as a
|
50
|
+
/// selector.
|
51
|
+
///
|
52
|
+
/// @example scss
|
53
|
+
/// #{$all-buttons-focus} {
|
54
|
+
/// background-color: #0f0;
|
55
|
+
/// }
|
56
|
+
///
|
57
|
+
/// // CSS Output
|
58
|
+
/// button:focus,
|
59
|
+
/// [type='button']:focus,
|
60
|
+
/// [type='reset']:focus,
|
61
|
+
/// [type='submit']:focus {
|
62
|
+
/// background-color: #0f0;
|
63
|
+
/// }
|
64
|
+
|
65
|
+
$all-buttons-focus: _assign-inputs($_buttons-list, focus);
|
66
|
+
|
67
|
+
/// A list of all HTML button elements with the `:hover` pseudo-class applied.
|
68
|
+
/// Please note that you must interpolate the variable (`#{}`) to use it as a
|
69
|
+
/// selector.
|
70
|
+
///
|
71
|
+
/// @example scss
|
72
|
+
/// #{$all-buttons-hover} {
|
73
|
+
/// background-color: #0f0;
|
74
|
+
/// }
|
75
|
+
///
|
76
|
+
/// // CSS Output
|
77
|
+
/// button:hover,
|
78
|
+
/// [type='button']:hover,
|
79
|
+
/// [type='reset']:hover,
|
80
|
+
/// [type='submit']:hover {
|
81
|
+
/// background-color: #0f0;
|
82
|
+
/// }
|
83
|
+
|
84
|
+
$all-buttons-hover: _assign-inputs($_buttons-list, hover);
|
@@ -0,0 +1,25 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
|
3
|
+
/// Provides an easy way to include a clearfix for containing floats.
|
4
|
+
///
|
5
|
+
/// @link https://goo.gl/yP5hiZ
|
6
|
+
///
|
7
|
+
/// @example scss
|
8
|
+
/// .element {
|
9
|
+
/// @include clearfix;
|
10
|
+
/// }
|
11
|
+
///
|
12
|
+
/// // CSS Output
|
13
|
+
/// .element::after {
|
14
|
+
/// clear: both;
|
15
|
+
/// content: "";
|
16
|
+
/// display: block;
|
17
|
+
/// }
|
18
|
+
|
19
|
+
@mixin clearfix {
|
20
|
+
&::after {
|
21
|
+
clear: both;
|
22
|
+
content: "";
|
23
|
+
display: block;
|
24
|
+
}
|
25
|
+
}
|
@@ -0,0 +1,81 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
|
3
|
+
/// Switches between two colors based on the contrast to another color. It’s
|
4
|
+
/// like a [ternary operator] for color contrast and can be useful for building
|
5
|
+
/// a button system.
|
6
|
+
///
|
7
|
+
/// The calculation of the contrast ratio is based on the [WCAG 2.0
|
8
|
+
/// specification]. However, we cannot guarantee full compliance, though all of
|
9
|
+
/// our manual testing passed.
|
10
|
+
///
|
11
|
+
/// [ternary operator]: https://goo.gl/ccfLqi
|
12
|
+
/// [WCAG 2.0 specification]: https://goo.gl/zhQuYA
|
13
|
+
///
|
14
|
+
/// @argument {color} $base-color
|
15
|
+
/// The color to evaluate lightness against.
|
16
|
+
///
|
17
|
+
/// @argument {color} $dark-color [#000]
|
18
|
+
/// The color to be output when `$base-color` is light. Can also be set
|
19
|
+
/// globally using the `contrast-switch-dark-color` key in the
|
20
|
+
/// Bourbon settings.
|
21
|
+
///
|
22
|
+
/// @argument {color} $light-color [#fff]
|
23
|
+
/// The color to be output when `$base-color` is dark. Can also be set
|
24
|
+
/// globally using the `contrast-switch-light-color` key in the
|
25
|
+
/// Bourbon settings.
|
26
|
+
///
|
27
|
+
/// @return {color}
|
28
|
+
///
|
29
|
+
/// @example scss
|
30
|
+
/// .element {
|
31
|
+
/// color: contrast-switch(#bae6e6);
|
32
|
+
/// }
|
33
|
+
///
|
34
|
+
/// // CSS Output
|
35
|
+
/// .element {
|
36
|
+
/// color: #000;
|
37
|
+
/// }
|
38
|
+
///
|
39
|
+
/// @example scss
|
40
|
+
/// .element {
|
41
|
+
/// $button-color: #2d72d9;
|
42
|
+
/// background-color: $button-color;
|
43
|
+
/// color: contrast-switch($button-color, #222, #eee);
|
44
|
+
/// }
|
45
|
+
///
|
46
|
+
/// // CSS Output
|
47
|
+
/// .element {
|
48
|
+
/// background-color: #2d72d9;
|
49
|
+
/// color: #eee;
|
50
|
+
/// }
|
51
|
+
///
|
52
|
+
/// @require {function} _fetch-bourbon-setting
|
53
|
+
///
|
54
|
+
/// @require {function} _is-color
|
55
|
+
///
|
56
|
+
/// @require {function} _contrast-ratio
|
57
|
+
///
|
58
|
+
/// @since 5.0.0
|
59
|
+
|
60
|
+
@function contrast-switch(
|
61
|
+
$base-color,
|
62
|
+
$dark-color: _fetch-bourbon-setting("contrast-switch-dark-color"),
|
63
|
+
$light-color: _fetch-bourbon-setting("contrast-switch-light-color")
|
64
|
+
) {
|
65
|
+
@if not _is-color($base-color) {
|
66
|
+
@error "`#{$base-color}` is not a valid color for the `$base-color` " +
|
67
|
+
"argument in the `contrast-switch` function.";
|
68
|
+
} @else if not _is-color($dark-color) {
|
69
|
+
@error "`#{$dark-color}` is not a valid color for the `$dark-color` " +
|
70
|
+
"argument in the `contrast-switch` function.";
|
71
|
+
} @else if not _is-color($light-color) {
|
72
|
+
@error "`#{$light-color}` is not a valid color for the `$light-color` " +
|
73
|
+
"argument in the `contrast-switch` function.";
|
74
|
+
} @else {
|
75
|
+
$-contrast-to-dark: _contrast-ratio($base-color, $dark-color);
|
76
|
+
$-contrast-to-light: _contrast-ratio($base-color, $light-color);
|
77
|
+
$-prefer-dark: $-contrast-to-dark >= $-contrast-to-light;
|
78
|
+
|
79
|
+
@return if($-prefer-dark, $dark-color, $light-color);
|
80
|
+
}
|
81
|
+
}
|