pusher-chameleon 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.ruby-version +1 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +23 -0
- data/README.md +17 -0
- data/docs/.gitignore +4 -0
- data/docs/Gemfile +10 -0
- data/docs/Gemfile.lock +72 -0
- data/docs/README.md +15 -0
- data/docs/Rakefile +40 -0
- data/docs/_config.production.yml +18 -0
- data/docs/_config.yml +39 -0
- data/docs/_includes/footer.html +38 -0
- data/docs/_includes/head.html +15 -0
- data/docs/_includes/header.html +27 -0
- data/docs/_includes/icon-github.html +1 -0
- data/docs/_includes/icon-github.svg +3 -0
- data/docs/_includes/logo-pusher.svg +4 -0
- data/docs/_includes/sidebar.html +33 -0
- data/docs/_layouts/default.html +53 -0
- data/docs/_layouts/page.html +14 -0
- data/docs/_layouts/post.html +15 -0
- data/docs/_plugins/chameleon_version.rb +11 -0
- data/docs/_plugins/copy_images_directory.rb +22 -0
- data/docs/_plugins/ext.rb +2 -0
- data/docs/_posts/2016-03-16-getting-started.md +28 -0
- data/docs/_posts/2016-03-16-introduction.md +24 -0
- data/docs/_posts/2016-03-17-buttons.md +61 -0
- data/docs/_posts/2016-03-17-colors.md +139 -0
- data/docs/_posts/2016-03-17-flex.md +24 -0
- data/docs/_posts/2016-03-17-forms.md +66 -0
- data/docs/_posts/2016-03-17-visibility.md +28 -0
- data/docs/_posts/2016-04-04-typography.md +111 -0
- data/docs/_posts/2016-04-05-syntax-highlighting.md +28 -0
- data/docs/_posts/2016-05-08-alerts.md +50 -0
- data/docs/_posts/2016-05-12-labels.md +22 -0
- data/docs/_posts/2016-05-13-tooltips.md +33 -0
- data/docs/_sass/_base.scss +36 -0
- data/docs/_sass/_chameleon_imports.scss +20 -0
- data/docs/_sass/_layout.scss +136 -0
- data/docs/_sass/_typography.scss +41 -0
- data/docs/_sass/layout/_aside.scss +151 -0
- data/docs/about.md +15 -0
- data/docs/autoprefixer.yml +4 -0
- data/docs/css/main.scss +11 -0
- data/docs/feed.xml +30 -0
- data/docs/index.html +23 -0
- data/images/ui_icons/alert_beta.svg +3 -0
- data/images/ui_icons/alert_info.svg +3 -0
- data/images/ui_icons/alert_tick.svg +6 -0
- data/images/ui_icons/alert_warning.svg +6 -0
- data/images/ui_icons/chevron_down.svg +3 -0
- data/images/ui_icons/github--active.svg +6 -0
- data/images/ui_icons/github.svg +6 -0
- data/images/ui_icons/google--active.svg +6 -0
- data/images/ui_icons/google.svg +10 -0
- data/images/ui_icons/plus.svg +3 -0
- data/javascripts/chameleon/code_box.js +14 -0
- data/javascripts/chameleon/pusher_featurette.js +52 -0
- data/javascripts/chameleon/pusher_text_cycler.js +60 -0
- data/lib/pusher-chameleon.rb +71 -0
- data/lib/pusher-chameleon/engine.rb +13 -0
- data/lib/pusher-chameleon/version.rb +8 -0
- data/package.json +24 -0
- data/pusher-chameleon.gemspec +21 -0
- data/stylesheets/.gitkeep +0 -0
- data/stylesheets/_base.scss +400 -0
- data/stylesheets/_global.scss +96 -0
- data/stylesheets/chameleon.scss +30 -0
- data/stylesheets/components/_alert.scss +102 -0
- data/stylesheets/components/_code_box.scss +84 -0
- data/stylesheets/components/_flex_aligners.scss +38 -0
- data/stylesheets/components/_label.scss +41 -0
- data/stylesheets/components/_signpost.scss +150 -0
- data/stylesheets/components/_spacers.scss +11 -0
- data/stylesheets/components/_statistic.scss +62 -0
- data/stylesheets/components/_tooltip.scss +65 -0
- data/stylesheets/components/_visibility.scss +117 -0
- data/stylesheets/forms/_base.scss +47 -0
- data/stylesheets/forms/_buttons.scss +242 -0
- data/stylesheets/forms/_checkbox.scss +31 -0
- data/stylesheets/forms/_field.scss +11 -0
- data/stylesheets/forms/_fieldset.scss +18 -0
- data/stylesheets/forms/_forms.scss +21 -0
- data/stylesheets/forms/_input.scss +14 -0
- data/stylesheets/forms/_range.scss +110 -0
- data/stylesheets/forms/_select.scss +15 -0
- data/stylesheets/forms/_textarea.scss +11 -0
- data/stylesheets/grid/_classes.scss +152 -0
- data/stylesheets/grid/_column.scss +126 -0
- data/stylesheets/grid/_flex-grid.scss +268 -0
- data/stylesheets/grid/_grid.scss +60 -0
- data/stylesheets/grid/_gutter.scss +34 -0
- data/stylesheets/grid/_layout.scss +51 -0
- data/stylesheets/grid/_position.scss +73 -0
- data/stylesheets/grid/_row.scss +95 -0
- data/stylesheets/grid/_size.scss +24 -0
- data/stylesheets/typography/_base.scss +60 -0
- data/stylesheets/typography/_helpers.scss +66 -0
- data/stylesheets/typography/_import.scss +54 -0
- data/stylesheets/typography/_syntax_highlighting.scss +168 -0
- data/stylesheets/typography/_syntax_highlighting_dark.scss +73 -0
- data/stylesheets/typography/_syntax_highlighting_light.scss +73 -0
- data/stylesheets/typography/_titles.scss +69 -0
- data/stylesheets/typography/_typography.scss +12 -0
- data/stylesheets/util/_breakpoint.scss +273 -0
- data/stylesheets/util/_color.scss +42 -0
- data/stylesheets/util/_flex.scss +68 -0
- data/stylesheets/util/_mixins.scss +233 -0
- data/stylesheets/util/_selector.scss +40 -0
- data/stylesheets/util/_unit.scss +90 -0
- data/stylesheets/util/_url_helper.scss +30 -0
- data/stylesheets/util/_util.scss +13 -0
- data/stylesheets/util/_value.scss +107 -0
- metadata +199 -0
@@ -0,0 +1,95 @@
|
|
1
|
+
// Foundation for Sites by ZURB
|
2
|
+
// foundation.zurb.com
|
3
|
+
// Licensed under MIT Open Source
|
4
|
+
|
5
|
+
////
|
6
|
+
/// @group grid
|
7
|
+
////
|
8
|
+
|
9
|
+
/// Change the behavior of columns defined inside this mixin to use a different column count.
|
10
|
+
/// @content
|
11
|
+
///
|
12
|
+
/// @param {Number} $columns - Number of columns to use.
|
13
|
+
/// @param {Boolean} $root [false]
|
14
|
+
/// If `false`, selectors inside this mixin will nest inside the parent selector.
|
15
|
+
/// If `true`, selectors will not nest.
|
16
|
+
@mixin grid-context(
|
17
|
+
$columns,
|
18
|
+
$root: false
|
19
|
+
) {
|
20
|
+
// Store the current column count so it can be re-set later
|
21
|
+
$old-grid-column-count: $grid-column-count;
|
22
|
+
$grid-column-count: $columns !global;
|
23
|
+
|
24
|
+
@if $root {
|
25
|
+
@at-root { @content; }
|
26
|
+
}
|
27
|
+
@else {
|
28
|
+
@content;
|
29
|
+
}
|
30
|
+
|
31
|
+
// Restore the old column count
|
32
|
+
$grid-column-count: $old-grid-column-count;
|
33
|
+
}
|
34
|
+
|
35
|
+
/// Creates a grid row.
|
36
|
+
/// @content
|
37
|
+
///
|
38
|
+
/// @param {Number} $columns [null] - Column count for this row. `null` will use the default column count.
|
39
|
+
/// @param {Keywords} $behavior [null]
|
40
|
+
/// Modifications to the default grid styles. `nest` indicates the row will be placed inside another row. `collapse` indicates that the columns inside this row will not have padding. `nest collapse` combines both behaviors.
|
41
|
+
/// @param {Number} $width [$grid-row-width] - Maximum width of the row.
|
42
|
+
/// @param {Boolean} $cf [true] - Whether or not to include a clearfix.
|
43
|
+
/// @param {Number} $gutter [$grid-column-gutter] - Gutter to use when inverting margins, in case the row is nested.
|
44
|
+
@mixin grid-row(
|
45
|
+
$columns: null,
|
46
|
+
$behavior: null,
|
47
|
+
$width: $grid-row-width,
|
48
|
+
$cf: true,
|
49
|
+
$gutter: $grid-column-gutter
|
50
|
+
) {
|
51
|
+
$margin: auto;
|
52
|
+
|
53
|
+
@if index($behavior, nest) != null {
|
54
|
+
@include grid-row-nest($gutter);
|
55
|
+
|
56
|
+
@if index($behavior, collapse) != null {
|
57
|
+
margin-left: 0;
|
58
|
+
margin-right: 0;
|
59
|
+
}
|
60
|
+
}
|
61
|
+
@else {
|
62
|
+
max-width: $width;
|
63
|
+
margin-left: auto;
|
64
|
+
margin-right: auto;
|
65
|
+
width: 100%;
|
66
|
+
}
|
67
|
+
|
68
|
+
@if $cf {
|
69
|
+
@include clearfix;
|
70
|
+
}
|
71
|
+
|
72
|
+
@if $columns != null {
|
73
|
+
@include grid-context($columns) {
|
74
|
+
@content;
|
75
|
+
}
|
76
|
+
}
|
77
|
+
}
|
78
|
+
|
79
|
+
/// Inverts the margins of a row to nest it inside of a column.
|
80
|
+
///
|
81
|
+
/// @param {Map|null} $gutter [null] - Gutter value to use when inverting the margins. Set to `null` to refer to the responsive gutter settings.
|
82
|
+
@mixin grid-row-nest($gutter: $grid-column-gutter) {
|
83
|
+
@if type-of($gutter) == 'number' {
|
84
|
+
$gutter: (small: $gutter);
|
85
|
+
}
|
86
|
+
|
87
|
+
@each $breakpoint, $value in $gutter {
|
88
|
+
$margin: rem-calc($value) / 2 * -1;
|
89
|
+
|
90
|
+
@include breakpoint($breakpoint) {
|
91
|
+
margin-left: $margin;
|
92
|
+
margin-right: $margin;
|
93
|
+
}
|
94
|
+
}
|
95
|
+
}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
// Foundation for Sites by ZURB
|
2
|
+
// foundation.zurb.com
|
3
|
+
// Licensed under MIT Open Source
|
4
|
+
|
5
|
+
////
|
6
|
+
/// @group grid
|
7
|
+
////
|
8
|
+
|
9
|
+
/// Set the width of a grid column.
|
10
|
+
///
|
11
|
+
/// @param {Number|List} $width [$grid-column-count] - Width to make the column. You can pass in any value accepted by the `grid-column()` function, such as `6`, `50%`, or `1 of 2`.
|
12
|
+
@mixin grid-column-size(
|
13
|
+
$columns: $grid-column-count
|
14
|
+
) {
|
15
|
+
width: grid-column($columns);
|
16
|
+
}
|
17
|
+
|
18
|
+
/// Shorthand for `grid-column-size()`.
|
19
|
+
/// @alias grid-column-size
|
20
|
+
@mixin grid-col-size(
|
21
|
+
$columns: $grid-column-count
|
22
|
+
) {
|
23
|
+
@include grid-column-size($columns);
|
24
|
+
}
|
@@ -0,0 +1,60 @@
|
|
1
|
+
@mixin chameleon-typography-base {
|
2
|
+
div,
|
3
|
+
dl,
|
4
|
+
dt,
|
5
|
+
dd,
|
6
|
+
ul,
|
7
|
+
ol,
|
8
|
+
li,
|
9
|
+
h1,
|
10
|
+
h2,
|
11
|
+
h3,
|
12
|
+
h4,
|
13
|
+
h5,
|
14
|
+
h6,
|
15
|
+
pre,
|
16
|
+
form,
|
17
|
+
p,
|
18
|
+
blockquote,
|
19
|
+
th,
|
20
|
+
td {
|
21
|
+
margin: 0;
|
22
|
+
padding: 0;
|
23
|
+
}
|
24
|
+
|
25
|
+
a {
|
26
|
+
color: $color-primary;
|
27
|
+
font-weight: 500;
|
28
|
+
}
|
29
|
+
|
30
|
+
p,
|
31
|
+
ul li,
|
32
|
+
ol li {
|
33
|
+
@extend %font-family-secondary;
|
34
|
+
font-size: rem-calc(16px);
|
35
|
+
line-height: 1.4em;
|
36
|
+
font-weight: 400;
|
37
|
+
}
|
38
|
+
|
39
|
+
.p-boosted,
|
40
|
+
.p-max {
|
41
|
+
font-size: rem-calc(18px);
|
42
|
+
}
|
43
|
+
|
44
|
+
.p-min {
|
45
|
+
font-size: rem-calc(14px);
|
46
|
+
}
|
47
|
+
|
48
|
+
strong {
|
49
|
+
font-weight: 600;
|
50
|
+
}
|
51
|
+
|
52
|
+
code {
|
53
|
+
font-family: $font-family-monospace;
|
54
|
+
font-size: rem-calc(14px);
|
55
|
+
font-feature-settings: normal;
|
56
|
+
background-color: $color-snow;
|
57
|
+
padding: 4px 4px;
|
58
|
+
border-radius: 3px;
|
59
|
+
}
|
60
|
+
}
|
@@ -0,0 +1,66 @@
|
|
1
|
+
@mixin chameleon-typography-helpers {
|
2
|
+
|
3
|
+
.u-color-primary {
|
4
|
+
color: $color-primary !important;
|
5
|
+
}
|
6
|
+
|
7
|
+
.u-color-developer {
|
8
|
+
color: $color-developer !important;
|
9
|
+
}
|
10
|
+
|
11
|
+
// We provide dark and light
|
12
|
+
// class names for legacy
|
13
|
+
.u-color-dark,
|
14
|
+
.u-color-black {
|
15
|
+
color: $color-black !important;
|
16
|
+
}
|
17
|
+
|
18
|
+
.u-color-light,
|
19
|
+
.u-color-white {
|
20
|
+
color: $color-white !important;
|
21
|
+
}
|
22
|
+
|
23
|
+
.u-color-snow {
|
24
|
+
color: $color-snow !important;
|
25
|
+
}
|
26
|
+
|
27
|
+
.u-color-smoke {
|
28
|
+
color: $color-smoke !important;
|
29
|
+
}
|
30
|
+
|
31
|
+
.u-color-silver {
|
32
|
+
color: $color-silver !important;
|
33
|
+
}
|
34
|
+
|
35
|
+
.u-color-slate {
|
36
|
+
color: $color-slate !important;
|
37
|
+
}
|
38
|
+
|
39
|
+
.u-color-warning {
|
40
|
+
color: $color-warning !important;
|
41
|
+
}
|
42
|
+
|
43
|
+
.u-color-danger {
|
44
|
+
color: $color-danger !important;
|
45
|
+
}
|
46
|
+
|
47
|
+
.u-color-success {
|
48
|
+
color: $color-success !important;
|
49
|
+
}
|
50
|
+
|
51
|
+
.u-color-beta {
|
52
|
+
color: $color-beta !important;
|
53
|
+
}
|
54
|
+
|
55
|
+
.u-text-align-center {
|
56
|
+
text-align: left;
|
57
|
+
|
58
|
+
@media #{$medium-up} {
|
59
|
+
text-align: center;
|
60
|
+
}
|
61
|
+
}
|
62
|
+
|
63
|
+
.u-text-align-right {
|
64
|
+
text-align: right;
|
65
|
+
}
|
66
|
+
}
|
@@ -0,0 +1,54 @@
|
|
1
|
+
// Realtime Text Light
|
2
|
+
@font-face {
|
3
|
+
font-family: 'pusher-realtime-text';
|
4
|
+
font-weight: 300;
|
5
|
+
src: url('#{$cdn-font-url}/realtime/realtime_text_light.eot');
|
6
|
+
src: url('#{$cdn-font-url}/realtime/realtime_text_light.woff2') format('woff2'),
|
7
|
+
url('#{$cdn-font-url}/realtime/realtime_text_light.woff') format('woff'),
|
8
|
+
url('#{$cdn-font-url}/realtime/realtime_text_light.ttf') format('truetype'),
|
9
|
+
url('#{$cdn-font-url}/realtime/realtime_text_light.eot?#iefix') format('embedded-opentype');
|
10
|
+
}
|
11
|
+
|
12
|
+
// Realtime Text Regular
|
13
|
+
@font-face {
|
14
|
+
font-family: 'pusher-realtime-text';
|
15
|
+
font-weight: 400;
|
16
|
+
src: url('#{$cdn-font-url}/realtime/realtime_text_regular.eot');
|
17
|
+
src: url('#{$cdn-font-url}/realtime/realtime_text_regular.woff2') format('woff2'),
|
18
|
+
url('#{$cdn-font-url}/realtime/realtime_text_regular.woff') format('woff'),
|
19
|
+
url('#{$cdn-font-url}/realtime/realtime_text_regular.ttf') format('truetype'),
|
20
|
+
url('#{$cdn-font-url}/realtime/realtime_text_regular.eot?#iefix') format('embedded-opentype');
|
21
|
+
}
|
22
|
+
|
23
|
+
// Realtime Text Semibold
|
24
|
+
@font-face {
|
25
|
+
font-family: 'pusher-realtime-text';
|
26
|
+
font-weight: 500;
|
27
|
+
src: url('#{$cdn-font-url}/realtime/realtime_text_semibold.eot');
|
28
|
+
src: url('#{$cdn-font-url}/realtime/realtime_text_semibold.woff2') format('woff2'),
|
29
|
+
url('#{$cdn-font-url}/realtime/realtime_text_semibold.woff') format('woff'),
|
30
|
+
url('#{$cdn-font-url}/realtime/realtime_text_semibold.ttf') format('truetype'),
|
31
|
+
url('#{$cdn-font-url}/realtime/realtime_text_semibold.eot?#iefix') format('embedded-opentype');
|
32
|
+
}
|
33
|
+
|
34
|
+
// Realtime Text Bold
|
35
|
+
@font-face {
|
36
|
+
font-family: 'pusher-realtime-text';
|
37
|
+
font-weight: 600;
|
38
|
+
src: url('#{$cdn-font-url}/realtime/realtime_text_bold.eot');
|
39
|
+
src: url('#{$cdn-font-url}/realtime/realtime_text_bold.woff2') format('woff2'),
|
40
|
+
url('#{$cdn-font-url}/realtime/realtime_text_bold.woff') format('woff'),
|
41
|
+
url('#{$cdn-font-url}/realtime/realtime_text_bold.ttf') format('truetype'),
|
42
|
+
url('#{$cdn-font-url}/realtime/realtime_text_bold.eot?#iefix') format('embedded-opentype');
|
43
|
+
}
|
44
|
+
|
45
|
+
// Realtime Text Black
|
46
|
+
@font-face {
|
47
|
+
font-family: 'pusher-realtime-text';
|
48
|
+
font-weight: 700;
|
49
|
+
src: url('#{$cdn-font-url}/realtime/realtime_text_black.eot');
|
50
|
+
src: url('#{$cdn-font-url}/realtime/realtime_text_black.woff2') format('woff2'),
|
51
|
+
url('#{$cdn-font-url}/realtime/realtime_text_black.woff') format('woff'),
|
52
|
+
url('#{$cdn-font-url}/realtime/realtime_text_black.ttf') format('truetype'),
|
53
|
+
url('#{$cdn-font-url}/realtime/realtime_text_black.eot?#iefix') format('embedded-opentype');
|
54
|
+
}
|
@@ -0,0 +1,168 @@
|
|
1
|
+
@mixin chameleon-typography-syntax-highlighting {
|
2
|
+
.highlight {
|
3
|
+
margin: 0;
|
4
|
+
padding: 20px 30px;
|
5
|
+
position: relative;
|
6
|
+
background: $color-snow;
|
7
|
+
border: 1px solid darken($color-snow, 5%);
|
8
|
+
|
9
|
+
* {
|
10
|
+
-webkit-font-smoothing: auto !important;
|
11
|
+
}
|
12
|
+
|
13
|
+
code {
|
14
|
+
background-color: transparent;
|
15
|
+
border-radius: $border-radius;
|
16
|
+
padding: 0;
|
17
|
+
}
|
18
|
+
|
19
|
+
code,
|
20
|
+
pre {
|
21
|
+
font-family: $font-family-monospace;
|
22
|
+
font-size: rem-calc(13px);
|
23
|
+
line-height: rem-calc(20px);
|
24
|
+
font-weight: 300;
|
25
|
+
color: #2b303b;
|
26
|
+
}
|
27
|
+
|
28
|
+
.c { color: #b9bfcc } /* Comment */
|
29
|
+
.err { color: #bf616a } /* Error */
|
30
|
+
.k { color: #b48ead } /* Keyword */
|
31
|
+
.l { color: #d08770 } /* Literal */
|
32
|
+
.n { color: #268bd2 } /* Name */
|
33
|
+
.o { color: #96b5b4 } /* Operator */
|
34
|
+
.p { color: #2b303b } /* Punctuation */
|
35
|
+
.cm { color: #a7adba } /* Comment.Multiline */
|
36
|
+
.cp { color: #a7adba } /* Comment.Preproc */
|
37
|
+
.c1 { color: #a7adba } /* Comment.Single */
|
38
|
+
.cs { color: #a7adba } /* Comment.Special */
|
39
|
+
.gd { color: #bf616a } /* Generic.Deleted */
|
40
|
+
.ge { font-style: italic } /* Generic.Emph */
|
41
|
+
.gh { color: #2b303b; font-weight: bold } /* Generic.Heading */
|
42
|
+
.gi { color: #25a25a } /* Generic.Inserted */
|
43
|
+
.gp { color: #a7adba; font-weight: bold } /* Generic.Prompt */
|
44
|
+
.gs { font-weight: bold } /* Generic.Strong */
|
45
|
+
.gu { color: #96b5b4; font-weight: bold } /* Generic.Subheading */
|
46
|
+
.kc { color: #b48ead } /* Keyword.Constant */
|
47
|
+
.kd { color: #b48ead } /* Keyword.Declaration */
|
48
|
+
.kn { color: #96b5b4 } /* Keyword.Namespace */
|
49
|
+
.kp { color: #b48ead } /* Keyword.Pseudo */
|
50
|
+
.kr { color: #b48ead } /* Keyword.Reserved */
|
51
|
+
.kt { color: #ebcb8b } /* Keyword.Type */
|
52
|
+
.ld { color: #25a25a } /* Literal.Date */
|
53
|
+
.m { color: #d08770 } /* Literal.Number */
|
54
|
+
.s { color: #25a25a } /* Literal.String */
|
55
|
+
.na { color: #6699cc } /* Name.Attribute */
|
56
|
+
.nb { color: #2b303b } /* Name.Builtin */
|
57
|
+
.nc { color: #bf616a } /* Name.Class */
|
58
|
+
.no { color: #caa65f } /* Name.Constant */
|
59
|
+
.nd { color: #96b5b4 } /* Name.Decorator */
|
60
|
+
.ni { color: #2b303b } /* Name.Entity */
|
61
|
+
.ne { color: #bf616a } /* Name.Exception */
|
62
|
+
.nf { color: #268bd2 } /* Name.Function */
|
63
|
+
.nl { color: #2b303b } /* Name.Label */
|
64
|
+
.nn { color: #ebcb8b } /* Name.Namespace */
|
65
|
+
.nx { color: #6699cc } /* Name.Other */
|
66
|
+
.py { color: #2b303b } /* Name.Property */
|
67
|
+
.nt { color: #39acdc} /* Name.Tag */
|
68
|
+
.nv { color: #bf616a } /* Name.Variable */
|
69
|
+
.ow { color: #96b5b4 } /* Operator.Word */
|
70
|
+
.w { color: #2b303b } /* Text.Whitespace */
|
71
|
+
.mf { color: #d08770 } /* Literal.Number.Float */
|
72
|
+
.mh { color: #d08770 } /* Literal.Number.Hex */
|
73
|
+
.mi { color: #d08770 } /* Literal.Number.Integer */
|
74
|
+
.mo { color: #d08770 } /* Literal.Number.Oct */
|
75
|
+
.sb { color: #25a25a } /* Literal.String.Backtick */
|
76
|
+
.sc { color: #2b303b } /* Literal.String.Char */
|
77
|
+
.sd { color: #a7adba } /* Literal.String.Doc */
|
78
|
+
.s2 { color: #25a25a } /* Literal.String.Double */
|
79
|
+
.se { color: #d08770 } /* Literal.String.Escape */
|
80
|
+
.sh { color: #25a25a } /* Literal.String.Heredoc */
|
81
|
+
.si { color: #d08770 } /* Literal.String.Interpol */
|
82
|
+
.sx { color: #25a25a } /* Literal.String.Other */
|
83
|
+
.sr { color: #25a25a } /* Literal.String.Regex */
|
84
|
+
.s1 { color: #25a25a } /* Literal.String.Single */
|
85
|
+
.ss { color: #3a343e } /* Literal.String.Symbol */
|
86
|
+
.bp { color: #2b303b } /* Name.Builtin.Pseudo */
|
87
|
+
.vc { color: #bf616a } /* Name.Variable.Class */
|
88
|
+
.vg { color: #bf616a } /* Name.Variable.Global */
|
89
|
+
.vi { color: #268bd2 } /* Name.Variable.Instance */
|
90
|
+
.il { color: #d08770 } /* Literal.Number.Integer.Long */
|
91
|
+
|
92
|
+
.page-highlight--dark & {
|
93
|
+
background: #3b4a59;
|
94
|
+
border: 0;
|
95
|
+
|
96
|
+
code,
|
97
|
+
pre {
|
98
|
+
text-shadow: 0 1px rgba(0, 0, 0, .35);
|
99
|
+
color: #d8dee9;
|
100
|
+
}
|
101
|
+
|
102
|
+
.hll { background-color: #4F5B66 }
|
103
|
+
.c { color: #65737E } /* Comment */
|
104
|
+
.err { color: #EC5f67 } /* Error */
|
105
|
+
.k { color: #C594C5 } /* Keyword */
|
106
|
+
.l { color: #F99157 } /* Literal */
|
107
|
+
.n { color: #D8DEE9 } /* Name */
|
108
|
+
.o { color: #5FB3B3 } /* Operator */
|
109
|
+
.p { color: #D8DEE9 } /* Punctuation */
|
110
|
+
.cm { color: #65737E } /* Comment.Multiline */
|
111
|
+
.cp { color: #65737E } /* Comment.Preproc */
|
112
|
+
.c1 { color: #65737E } /* Comment.Single */
|
113
|
+
.cs { color: #65737E } /* Comment.Special */
|
114
|
+
.gd { color: #EC5f67 } /* Generic.Deleted */
|
115
|
+
.ge { font-style: italic } /* Generic.Emph */
|
116
|
+
.gh { color: #D8DEE9; font-weight: bold } /* Generic.Heading */
|
117
|
+
.gi { color: #99C794 } /* Generic.Inserted */
|
118
|
+
.gp { color: #65737E; font-weight: bold } /* Generic.Prompt */
|
119
|
+
.gs { font-weight: bold } /* Generic.Strong */
|
120
|
+
.gu { color: #5FB3B3; font-weight: bold } /* Generic.Subheading */
|
121
|
+
.kc { color: #C594C5 } /* Keyword.Constant */
|
122
|
+
.kd { color: #C594C5 } /* Keyword.Declaration */
|
123
|
+
.kn { color: #5FB3B3 } /* Keyword.Namespace */
|
124
|
+
.kp { color: #C594C5 } /* Keyword.Pseudo */
|
125
|
+
.kr { color: #C594C5 } /* Keyword.Reserved */
|
126
|
+
.kt { color: #FAC863 } /* Keyword.Type */
|
127
|
+
.ld { color: #99C794 } /* Literal.Date */
|
128
|
+
.m { color: #F99157 } /* Literal.Number */
|
129
|
+
.s { color: #99C794 } /* Literal.String */
|
130
|
+
.na { color: #6699CC } /* Name.Attribute */
|
131
|
+
.nb { color: #D8DEE9 } /* Name.Builtin */
|
132
|
+
.nc { color: #FAC863 } /* Name.Class */
|
133
|
+
.no { color: #EC5f67 } /* Name.Constant */
|
134
|
+
.nd { color: #5FB3B3 } /* Name.Decorator */
|
135
|
+
.ni { color: #D8DEE9 } /* Name.Entity */
|
136
|
+
.ne { color: #EC5f67 } /* Name.Exception */
|
137
|
+
.nf { color: #6699CC } /* Name.Function */
|
138
|
+
.nl { color: #D8DEE9 } /* Name.Label */
|
139
|
+
.nn { color: #FAC863 } /* Name.Namespace */
|
140
|
+
.nx { color: #6699CC } /* Name.Other */
|
141
|
+
.py { color: #D8DEE9 } /* Name.Property */
|
142
|
+
.nt { color: #5FB3B3 } /* Name.Tag */
|
143
|
+
.nv { color: #EC5f67 } /* Name.Variable */
|
144
|
+
.ow { color: #5FB3B3 } /* Operator.Word */
|
145
|
+
.w { color: #D8DEE9 } /* Text.Whitespace */
|
146
|
+
.mf { color: #F99157 } /* Literal.Number.Float */
|
147
|
+
.mh { color: #F99157 } /* Literal.Number.Hex */
|
148
|
+
.mi { color: #F99157 } /* Literal.Number.Integer */
|
149
|
+
.mo { color: #F99157 } /* Literal.Number.Oct */
|
150
|
+
.sb { color: #99C794 } /* Literal.String.Backtick */
|
151
|
+
.sc { color: #D8DEE9 } /* Literal.String.Char */
|
152
|
+
.sd { color: #65737E } /* Literal.String.Doc */
|
153
|
+
.s2 { color: #99C794 } /* Literal.String.Double */
|
154
|
+
.se { color: #F99157 } /* Literal.String.Escape */
|
155
|
+
.sh { color: #99C794 } /* Literal.String.Heredoc */
|
156
|
+
.si { color: #F99157 } /* Literal.String.Interpol */
|
157
|
+
.sx { color: #99C794 } /* Literal.String.Other */
|
158
|
+
.sr { color: #99C794 } /* Literal.String.Regex */
|
159
|
+
.s1 { color: #99C794 } /* Literal.String.Single */
|
160
|
+
.ss { color: #99C794 } /* Literal.String.Symbol */
|
161
|
+
.bp { color: #D8DEE9 } /* Name.Builtin.Pseudo */
|
162
|
+
.vc { color: #EC5f67 } /* Name.Variable.Class */
|
163
|
+
.vg { color: #EC5f67 } /* Name.Variable.Global */
|
164
|
+
.vi { color: #EC5f67 } /* Name.Variable.Instance */
|
165
|
+
.il { color: #F99157 } /* Literal.Number.Integer.Long */
|
166
|
+
}
|
167
|
+
}
|
168
|
+
}
|