chulapa-jekyll 1.0.0
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/CHANGELOG.md +27 -0
- data/LICENSE +21 -0
- data/README.md +126 -0
- data/_includes/components/author.html +40 -0
- data/_includes/components/breadcrumbdatesocial.html +63 -0
- data/_includes/components/categories.html +15 -0
- data/_includes/components/disqus.html +24 -0
- data/_includes/components/headers.html +124 -0
- data/_includes/components/indexcards.html +48 -0
- data/_includes/components/navbeforeafter.html +22 -0
- data/_includes/components/tags.html +15 -0
- data/_includes/components/toc.html +112 -0
- data/_includes/custom/custom_bottomscripts.html +5 -0
- data/_includes/custom/custom_head.html +8 -0
- data/_includes/custom/custom_head_before_css.html +5 -0
- data/_includes/custom/giscus.html +1 -0
- data/_includes/footer.html +129 -0
- data/_includes/head.html +309 -0
- data/_includes/navbar.html +205 -0
- data/_includes/search/algolia.html +3 -0
- data/_includes/search/google.html +11 -0
- data/_includes/search/lunr.html +7 -0
- data/_includes/snippets/bootstrapdemo.html +1390 -0
- data/_includes/snippets/carousel.html +61 -0
- data/_includes/snippets/datetranslate.html +48 -0
- data/_includes/snippets/masonry.html +23 -0
- data/_includes/snippets/video.html +26 -0
- data/_includes/snippets/youtube.html +6 -0
- data/_layouts/archive.html +82 -0
- data/_layouts/cloudcategory.html +89 -0
- data/_layouts/cloudtag.html +86 -0
- data/_layouts/compress.html +10 -0
- data/_layouts/default.html +39 -0
- data/_layouts/indexcategory.html +36 -0
- data/_layouts/landingpage.html +51 -0
- data/_layouts/minimal.html +21 -0
- data/_layouts/search.html +59 -0
- data/_sass/bootstrap/_alert.scss +51 -0
- data/_sass/bootstrap/_badge.scss +54 -0
- data/_sass/bootstrap/_breadcrumb.scss +44 -0
- data/_sass/bootstrap/_button-group.scss +163 -0
- data/_sass/bootstrap/_buttons.scss +142 -0
- data/_sass/bootstrap/_card.scss +282 -0
- data/_sass/bootstrap/_carousel.scss +197 -0
- data/_sass/bootstrap/_close.scss +40 -0
- data/_sass/bootstrap/_code.scss +48 -0
- data/_sass/bootstrap/_custom-forms.scss +522 -0
- data/_sass/bootstrap/_dropdown.scss +192 -0
- data/_sass/bootstrap/_forms.scss +347 -0
- data/_sass/bootstrap/_functions.scss +141 -0
- data/_sass/bootstrap/_grid.scss +77 -0
- data/_sass/bootstrap/_images.scss +42 -0
- data/_sass/bootstrap/_input-group.scss +192 -0
- data/_sass/bootstrap/_jumbotron.scss +17 -0
- data/_sass/bootstrap/_list-group.scss +154 -0
- data/_sass/bootstrap/_media.scss +8 -0
- data/_sass/bootstrap/_mixins.scss +47 -0
- data/_sass/bootstrap/_modal.scss +241 -0
- data/_sass/bootstrap/_nav.scss +121 -0
- data/_sass/bootstrap/_navbar.scss +324 -0
- data/_sass/bootstrap/_pagination.scss +74 -0
- data/_sass/bootstrap/_popover.scss +170 -0
- data/_sass/bootstrap/_print.scss +141 -0
- data/_sass/bootstrap/_progress.scss +47 -0
- data/_sass/bootstrap/_reboot.scss +480 -0
- data/_sass/bootstrap/_root.scss +20 -0
- data/_sass/bootstrap/_spinners.scss +56 -0
- data/_sass/bootstrap/_tables.scss +185 -0
- data/_sass/bootstrap/_toasts.scss +44 -0
- data/_sass/bootstrap/_tooltip.scss +115 -0
- data/_sass/bootstrap/_transitions.scss +20 -0
- data/_sass/bootstrap/_type.scss +125 -0
- data/_sass/bootstrap/_utilities.scss +18 -0
- data/_sass/bootstrap/_variables.scss +1147 -0
- data/_sass/bootstrap/bootstrap-grid.scss +29 -0
- data/_sass/bootstrap/bootstrap-reboot.scss +12 -0
- data/_sass/bootstrap/bootstrap.scss +44 -0
- data/_sass/bootstrap/mixins/_alert.scss +13 -0
- data/_sass/bootstrap/mixins/_background-variant.scss +23 -0
- data/_sass/bootstrap/mixins/_badge.scss +17 -0
- data/_sass/bootstrap/mixins/_border-radius.scss +76 -0
- data/_sass/bootstrap/mixins/_box-shadow.scss +20 -0
- data/_sass/bootstrap/mixins/_breakpoints.scss +123 -0
- data/_sass/bootstrap/mixins/_buttons.scss +110 -0
- data/_sass/bootstrap/mixins/_caret.scss +62 -0
- data/_sass/bootstrap/mixins/_clearfix.scss +7 -0
- data/_sass/bootstrap/mixins/_deprecate.scss +10 -0
- data/_sass/bootstrap/mixins/_float.scss +14 -0
- data/_sass/bootstrap/mixins/_forms.scss +177 -0
- data/_sass/bootstrap/mixins/_gradients.scss +45 -0
- data/_sass/bootstrap/mixins/_grid-framework.scss +81 -0
- data/_sass/bootstrap/mixins/_grid.scss +69 -0
- data/_sass/bootstrap/mixins/_hover.scss +37 -0
- data/_sass/bootstrap/mixins/_image.scss +36 -0
- data/_sass/bootstrap/mixins/_list-group.scss +21 -0
- data/_sass/bootstrap/mixins/_lists.scss +7 -0
- data/_sass/bootstrap/mixins/_nav-divider.scss +11 -0
- data/_sass/bootstrap/mixins/_pagination.scss +22 -0
- data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
- data/_sass/bootstrap/mixins/_resize.scss +6 -0
- data/_sass/bootstrap/mixins/_screen-reader.scss +34 -0
- data/_sass/bootstrap/mixins/_size.scss +7 -0
- data/_sass/bootstrap/mixins/_table-row.scss +39 -0
- data/_sass/bootstrap/mixins/_text-emphasis.scss +17 -0
- data/_sass/bootstrap/mixins/_text-hide.scss +11 -0
- data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
- data/_sass/bootstrap/mixins/_transition.scss +26 -0
- data/_sass/bootstrap/mixins/_visibility.scss +8 -0
- data/_sass/bootstrap/utilities/_align.scss +8 -0
- data/_sass/bootstrap/utilities/_background.scss +19 -0
- data/_sass/bootstrap/utilities/_borders.scss +75 -0
- data/_sass/bootstrap/utilities/_clearfix.scss +3 -0
- data/_sass/bootstrap/utilities/_display.scss +26 -0
- data/_sass/bootstrap/utilities/_embed.scss +39 -0
- data/_sass/bootstrap/utilities/_flex.scss +51 -0
- data/_sass/bootstrap/utilities/_float.scss +11 -0
- data/_sass/bootstrap/utilities/_interactions.scss +5 -0
- data/_sass/bootstrap/utilities/_overflow.scss +5 -0
- data/_sass/bootstrap/utilities/_position.scss +32 -0
- data/_sass/bootstrap/utilities/_screenreaders.scss +11 -0
- data/_sass/bootstrap/utilities/_shadows.scss +6 -0
- data/_sass/bootstrap/utilities/_sizing.scss +20 -0
- data/_sass/bootstrap/utilities/_spacing.scss +73 -0
- data/_sass/bootstrap/utilities/_stretched-link.scss +19 -0
- data/_sass/bootstrap/utilities/_text.scss +71 -0
- data/_sass/bootstrap/utilities/_visibility.scss +13 -0
- data/_sass/bootstrap/vendor/_rfs.scss +204 -0
- data/_sass/bootstrapv5-migration.scss +79 -0
- data/_sass/chulapa-classes.scss +844 -0
- data/_sass/chulapa-master.scss +11 -0
- data/_sass/chulapa-misc.scss +105 -0
- data/_sass/chulapa-mixins.scss +77 -0
- data/_sass/chulapa-vars.scss +48 -0
- data/_sass/highlight/README.md +23 -0
- data/_sass/highlight/UNLICENSE.txt +24 -0
- data/_sass/highlight/autumn.scss +58 -0
- data/_sass/highlight/borland.scss +46 -0
- data/_sass/highlight/bw.scss +34 -0
- data/_sass/highlight/colorful.scss +61 -0
- data/_sass/highlight/cran.scss +169 -0
- data/_sass/highlight/default.scss +61 -0
- data/_sass/highlight/dracula.scss +169 -0
- data/_sass/highlight/emacs.scss +61 -0
- data/_sass/highlight/friendly.scss +61 -0
- data/_sass/highlight/fruity.scss +70 -0
- data/_sass/highlight/github.scss +61 -0
- data/_sass/highlight/gruvbox.light.scss +84 -0
- data/_sass/highlight/manni.scss +61 -0
- data/_sass/highlight/monokai.scss +65 -0
- data/_sass/highlight/murphy.scss +61 -0
- data/_sass/highlight/native.scss +70 -0
- data/_sass/highlight/pastie.scss +60 -0
- data/_sass/highlight/perldoc.scss +58 -0
- data/_sass/highlight/skeletor.scss +140 -0
- data/_sass/highlight/tango.scss +69 -0
- data/_sass/highlight/thankful_eyes.scss +173 -0
- data/_sass/highlight/trac.scss +59 -0
- data/_sass/highlight/vim.scss +70 -0
- data/_sass/highlight/vs.scss +33 -0
- data/_sass/highlight/zenburn.scss +136 -0
- data/_sass/reset-algolia.scss +24 -0
- data/_sass/skins/academia.scss +26 -0
- data/_sass/skins/auto.scss +26 -0
- data/_sass/skins/chulapa.scss +52 -0
- data/_sass/skins/deeply.scss +89 -0
- data/_sass/skins/graymor.scss +26 -0
- data/_sass/skins/hootstrap.scss +17 -0
- data/_sass/skins/journal.scss +142 -0
- data/_sass/skins/lux.scss +377 -0
- data/_sass/skins/lymcha.scss +14 -0
- data/_sass/skins/minty.scss +165 -0
- data/_sass/skins/none.scss +2 -0
- data/_sass/skins/pear.scss +21 -0
- data/_sass/skins/preptor.scss +19 -0
- data/_sass/skins/sketchy.scss +745 -0
- data/_sass/skins/sunset.scss +14 -0
- data/_sass/skins/twitter-dim.scss +30 -0
- data/_sass/skins/twitter-lights-out.scss +31 -0
- data/_sass/skins/twitter.scss +30 -0
- data/_sass/skins/universal.scss +24 -0
- data/_sass/skins/wandoo.scss +15 -0
- data/assets/atom.xml +72 -0
- data/assets/css/custom.scss +4 -0
- data/assets/css/highlighter.scss +5 -0
- data/assets/css/main.scss +35 -0
- data/assets/fonts/Chulapa/Chulapa-Bold.otf +0 -0
- data/assets/fonts/Chulapa/Chulapa-Bold_v2.1.otf +0 -0
- data/assets/fonts/Chulapa/Chulapa-Bold_v2.2.otf +0 -0
- data/assets/fonts/Chulapa/Chulapa-Bold_v2.otf +0 -0
- data/assets/fonts/Chulapa/Chulapa-Bold_vmod.otf +0 -0
- data/assets/fonts/Chulapa/Chulapa-Light.otf +0 -0
- data/assets/fonts/Chulapa/Chulapa-Regular.otf +0 -0
- data/assets/fonts/Chulapa/LICENCIA DE USO.txt +2 -0
- data/assets/fonts/Ferpal/Ferpal-Regular.otf +0 -0
- data/assets/js/algolia/algolia-search.js +148 -0
- data/assets/js/ch_ytdefer/ch_ytdefer.js +81 -0
- data/assets/js/ch_ytdefer/ch_ytdefer.min.js +1 -0
- data/assets/js/clipboardrouge.js +95 -0
- data/assets/js/google/google-search.js +24 -0
- data/assets/js/lunr/lunr-search.js +122 -0
- data/assets/js/lunr/lunr-store.js +35 -0
- data/assets/rss.xml +65 -0
- metadata +356 -0
@@ -0,0 +1,11 @@
|
|
1
|
+
/*!
|
2
|
+
* Chulapa Jekyll Theme
|
3
|
+
* Developed by dieghernan (https://github.com/dieghernan)
|
4
|
+
* Licensed under MIT
|
5
|
+
*/
|
6
|
+
|
7
|
+
@import "bootstrapv5-migration";
|
8
|
+
@import "chulapa-mixins";
|
9
|
+
@import "chulapa-vars";
|
10
|
+
@import "chulapa-misc";
|
11
|
+
@import "chulapa-classes";
|
@@ -0,0 +1,105 @@
|
|
1
|
+
// Defaults needed as Bootstrap doesn't specifically format these tags
|
2
|
+
body {
|
3
|
+
min-height: 100vh;
|
4
|
+
}
|
5
|
+
|
6
|
+
h1,h2,h3,h4,h5,h6{
|
7
|
+
margin-top:$spacer;
|
8
|
+
}
|
9
|
+
|
10
|
+
img {
|
11
|
+
max-width: 95%;
|
12
|
+
height: auto;
|
13
|
+
@include border-radius($border-radius-lg);
|
14
|
+
display: block;
|
15
|
+
margin-left: auto;
|
16
|
+
margin-right: auto;
|
17
|
+
}
|
18
|
+
|
19
|
+
table {
|
20
|
+
@extend .table;
|
21
|
+
@extend .table-sm;
|
22
|
+
@extend .table-responsive;
|
23
|
+
color: $body-color;
|
24
|
+
display: block;
|
25
|
+
|
26
|
+
thead {
|
27
|
+
th {
|
28
|
+
color: $thead-chulapa-text-color;
|
29
|
+
background-color: $thead-chulapa-bg-color;
|
30
|
+
border: 0;
|
31
|
+
}
|
32
|
+
}
|
33
|
+
}
|
34
|
+
|
35
|
+
hr {
|
36
|
+
height: 0.125rem;
|
37
|
+
border-width: 0;
|
38
|
+
background-color: $secondary;
|
39
|
+
}
|
40
|
+
|
41
|
+
blockquote {
|
42
|
+
@extend .blockquote;
|
43
|
+
@extend .px-2;
|
44
|
+
@extend .py-1;
|
45
|
+
background-color: $blockquote-chulapa-bg-color;
|
46
|
+
color: $blockquote-chulapa-text-color;
|
47
|
+
@include border-radius($border-radius-lg);
|
48
|
+
}
|
49
|
+
|
50
|
+
.footnotes {
|
51
|
+
font-size:$font-size-sm;
|
52
|
+
color: $footnote-chulapa-text-color;
|
53
|
+
margin-left: 1.5*$spacer;
|
54
|
+
margin-right: 1.5*$spacer;
|
55
|
+
border-top: $border-width solid $secondary;
|
56
|
+
|
57
|
+
ol {
|
58
|
+
margin-top: $spacer;
|
59
|
+
}
|
60
|
+
}
|
61
|
+
|
62
|
+
a.reversefootnote {
|
63
|
+
color: $body-color;
|
64
|
+
text-decoration: none;
|
65
|
+
|
66
|
+
&:hover {
|
67
|
+
text-decoration: underline;
|
68
|
+
}
|
69
|
+
}
|
70
|
+
|
71
|
+
figcaption, caption, .figcaption, .caption {
|
72
|
+
@extend .figure-caption;
|
73
|
+
color: $footnote-chulapa-text-color;
|
74
|
+
max-width: 95%;
|
75
|
+
margin-left: auto;
|
76
|
+
margin-right: auto;
|
77
|
+
}
|
78
|
+
|
79
|
+
.highlight {
|
80
|
+
@extend .p-2;
|
81
|
+
}
|
82
|
+
|
83
|
+
|
84
|
+
// Could be overriden by highlight css
|
85
|
+
.highlight pre {
|
86
|
+
background-color: $pre-chulapa-bg-color;
|
87
|
+
}
|
88
|
+
|
89
|
+
.task-list {
|
90
|
+
margin: 0;
|
91
|
+
padding: 0;
|
92
|
+
.task-list-item {
|
93
|
+
list-style-type: none;
|
94
|
+
margin: 0;
|
95
|
+
padding: 0;
|
96
|
+
.task-list-item-checkbox{
|
97
|
+
margin-right: $spacer * .5;
|
98
|
+
}
|
99
|
+
}
|
100
|
+
}
|
101
|
+
|
102
|
+
// For disqus recommendations
|
103
|
+
#disqus_recommendations {
|
104
|
+
width: 100%;
|
105
|
+
}
|
@@ -0,0 +1,77 @@
|
|
1
|
+
// ----
|
2
|
+
// Sass (vundefined)
|
3
|
+
// Compass (vundefined)
|
4
|
+
// dart-sass (v1.6.2)
|
5
|
+
// ----
|
6
|
+
|
7
|
+
// =============================================================================
|
8
|
+
//
|
9
|
+
// PRECISE CONTROL OVER RESPONSIVE TYPOGRAPHY FOR SASS
|
10
|
+
// ---------------------------------------------------
|
11
|
+
// Indrek Paas @indrekpaas
|
12
|
+
//
|
13
|
+
// Inspired by Mike Riethmuller's Precise control over responsive typography
|
14
|
+
// https://www.madebymike.com.au/writing/precise-control-responsive-typography/
|
15
|
+
//
|
16
|
+
// Borrowed `strip-unit` function from Hugo Giraudel
|
17
|
+
// https://css-tricks.com/snippets/sass/strip-unit-function/
|
18
|
+
//
|
19
|
+
// 02.04.2018 Remove `screen` keyword from media queries
|
20
|
+
// 11.08.2016 Remove redundant `&` self-reference
|
21
|
+
// 31.03.2016 Remove redundant parenthesis from output
|
22
|
+
// 02.10.2015 Add support for multiple properties
|
23
|
+
// 24.04.2015 Initial release
|
24
|
+
//
|
25
|
+
// =============================================================================
|
26
|
+
|
27
|
+
@mixin fluid-type($properties, $min-vw, $max-vw, $min-value, $max-value) {
|
28
|
+
@each $property in $properties {
|
29
|
+
#{$property}: $min-value;
|
30
|
+
}
|
31
|
+
|
32
|
+
@media (min-width: $min-vw) {
|
33
|
+
@each $property in $properties {
|
34
|
+
#{$property}: calc(#{$min-value} + #{strip-unit($max-value - $min-value)} * (100vw - #{$min-vw}) / #{strip-unit($max-vw - $min-vw)});
|
35
|
+
}
|
36
|
+
}
|
37
|
+
|
38
|
+
@media (min-width: $max-vw) {
|
39
|
+
@each $property in $properties {
|
40
|
+
#{$property}: $max-value;
|
41
|
+
}
|
42
|
+
}
|
43
|
+
}
|
44
|
+
|
45
|
+
@function strip-unit($number) {
|
46
|
+
@if type-of($number)=="number"and not unitless($number) {
|
47
|
+
@return $number / ($number * 0 + 1);
|
48
|
+
}
|
49
|
+
|
50
|
+
@return $number;
|
51
|
+
}
|
52
|
+
|
53
|
+
@mixin hover-focus() {
|
54
|
+
|
55
|
+
&:hover,
|
56
|
+
&:focus {
|
57
|
+
@content;
|
58
|
+
}
|
59
|
+
}
|
60
|
+
|
61
|
+
@mixin badge-variant($bg) {
|
62
|
+
color: color-contrast($bg);
|
63
|
+
background-color: $bg;
|
64
|
+
|
65
|
+
@at-root a#{&} {
|
66
|
+
@include hover-focus() {
|
67
|
+
color: color-contrast($bg);
|
68
|
+
background-color: darken($bg, 10%);
|
69
|
+
}
|
70
|
+
|
71
|
+
&:focus,
|
72
|
+
&.focus {
|
73
|
+
outline: 0;
|
74
|
+
box-shadow: 0 0 0 $badge-focus-width rgba($bg, .5);
|
75
|
+
}
|
76
|
+
}
|
77
|
+
}
|
@@ -0,0 +1,48 @@
|
|
1
|
+
//Navbar
|
2
|
+
$navbar-chulapa-bg-color: $primary !default;
|
3
|
+
$navbar-chulapa-text-contrast: color-contrast($navbar-chulapa-bg-color, $black, $white);
|
4
|
+
$navbar-chulapa-text-color: mix($navbar-chulapa-text-contrast, $navbar-chulapa-bg-color, 50%) !default;
|
5
|
+
$navbar-chulapa-hover-color: mix($navbar-chulapa-text-contrast, $navbar-chulapa-bg-color, 75%) !default;
|
6
|
+
$navbar-chulapa-active-color: $navbar-chulapa-text-contrast !default;
|
7
|
+
$navbar-chulapa-disabled-color: mix($navbar-chulapa-text-contrast, $navbar-chulapa-bg-color, 20%) !default;
|
8
|
+
$navbar-chulapa-brand-color: $navbar-chulapa-active-color !default;
|
9
|
+
$navbar-chulapa-brand-hover-color: $navbar-chulapa-active-color !default;
|
10
|
+
$navbar-chulapa-toggler-color: $navbar-chulapa-text-color !default;
|
11
|
+
$navbar-chulapa-toggler-color-bg: transparent !default;
|
12
|
+
$navbar-chulapa-toggler-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'><path stroke='#{$navbar-chulapa-toggler-color}' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>") !default;
|
13
|
+
$navbar-chulapa-toggler-border-color: $navbar-chulapa-toggler-color !default;
|
14
|
+
|
15
|
+
|
16
|
+
//Footer
|
17
|
+
$footer-chulapa-bg-color: $navbar-chulapa-bg-color !default;
|
18
|
+
$footer-chulapa-text-color: $navbar-chulapa-hover-color !default;
|
19
|
+
$footer-chulapa-hover-color: $navbar-chulapa-text-color !default;
|
20
|
+
$footer-chulapa-icon-color: $footer-chulapa-text-color !default;
|
21
|
+
$footer-chulapa-icon-hover-color: $footer-chulapa-hover-color !default;
|
22
|
+
|
23
|
+
//Hero
|
24
|
+
$hero-chulapa-bg-color: $navbar-chulapa-bg-color !default;
|
25
|
+
$hero-chulapa-text-color: color-contrast($hero-chulapa-bg-color, $black, $white) !default;
|
26
|
+
|
27
|
+
//Landing page
|
28
|
+
$landingpage-chulapa-bg-color: $hero-chulapa-bg-color !default;
|
29
|
+
$landingpage-chulapa-text-color: color-contrast($landingpage-chulapa-bg-color, $black, $white) !default;
|
30
|
+
|
31
|
+
//Misc
|
32
|
+
//Blockquote
|
33
|
+
$blockquote-chulapa-bg-color: darken($body-bg, 5%) !default;
|
34
|
+
$blockquote-chulapa-text-color: mix($blockquote-chulapa-bg-color, $body-color, 20%) !default;
|
35
|
+
|
36
|
+
$footnote-chulapa-text-color: color-contrast($body-bg, $gray-600, $gray-300) !default;
|
37
|
+
|
38
|
+
$pre-chulapa-bg-color: lighten($blockquote-chulapa-bg-color, 2%) !default;
|
39
|
+
|
40
|
+
//Table
|
41
|
+
$thead-chulapa-bg-color: $primary !default;
|
42
|
+
$thead-chulapa-text-color: color-contrast($thead-chulapa-bg-color, $black, $white) !default;
|
43
|
+
|
44
|
+
|
45
|
+
//Pagination
|
46
|
+
$pagination-chulapa-text-color: $body-color !default;
|
47
|
+
$pagination-chulapa-bg-hover-color: $primary !default;
|
48
|
+
$pagination-chulapa-text-hover-color: color-contrast($pagination-chulapa-bg-hover-color, $black, $white) !default;
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# jekyll-pygments-themes
|
2
|
+
|
3
|
+
A set of CSS theme files for Pygments (Python-based code highlighting tool)
|
4
|
+
created from the original built-in Pygments styles, ready for use with Jekyll.
|
5
|
+
|
6
|
+
## Theme Previews and Custom Theme Builder
|
7
|
+
- <https://jwarby.github.io/jekyll-pygments-themes>
|
8
|
+
|
9
|
+
## Using Themes Without Jekyll
|
10
|
+
If you want to use the themes with something other than Jekyll, you may need to
|
11
|
+
remove or change the CSS style prefix of `.highlight`.
|
12
|
+
|
13
|
+
## Links
|
14
|
+
|
15
|
+
- [Jekyll](http://jekyllrb.com/) ([direct link to code highlighting documentation](http://jekyllrb.com/docs/templates/#code-snippet-highlighting))
|
16
|
+
- [Pygments](http://pygments.org)
|
17
|
+
|
18
|
+
## Hacking
|
19
|
+
|
20
|
+
If you want to hack on the site, check out the [gh-pages](https://github.com/jwarby/jekyll-pygments-themes/tree/gh-pages) branch.
|
21
|
+
|
22
|
+
## Acknowledgements
|
23
|
+
Forked from [richleland/pygments-css](https://github.com/richleland/pygments-css).
|
@@ -0,0 +1,24 @@
|
|
1
|
+
This is free and unencumbered software released into the public domain.
|
2
|
+
|
3
|
+
Anyone is free to copy, modify, publish, use, compile, sell, or
|
4
|
+
distribute this software, either in source code form or as a compiled
|
5
|
+
binary, for any purpose, commercial or non-commercial, and by any
|
6
|
+
means.
|
7
|
+
|
8
|
+
In jurisdictions that recognize copyright laws, the author or authors
|
9
|
+
of this software dedicate any and all copyright interest in the
|
10
|
+
software to the public domain. We make this dedication for the benefit
|
11
|
+
of the public at large and to the detriment of our heirs and
|
12
|
+
successors. We intend this dedication to be an overt act of
|
13
|
+
relinquishment in perpetuity of all present and future rights to this
|
14
|
+
software under copyright law.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
19
|
+
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
20
|
+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
21
|
+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
22
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
23
|
+
|
24
|
+
For more information, please refer to <http://unlicense.org>
|
@@ -0,0 +1,58 @@
|
|
1
|
+
.highlight .hll { background-color: #ffffcc }
|
2
|
+
.highlight .c { color: #aaaaaa; font-style: italic } /* Comment */
|
3
|
+
.highlight .err { color: #F00000; background-color: #F0A0A0 } /* Error */
|
4
|
+
.highlight .k { color: #0000aa } /* Keyword */
|
5
|
+
.highlight .cm { color: #aaaaaa; font-style: italic } /* Comment.Multiline */
|
6
|
+
.highlight .cp { color: #4c8317 } /* Comment.Preproc */
|
7
|
+
.highlight .c1 { color: #aaaaaa; font-style: italic } /* Comment.Single */
|
8
|
+
.highlight .cs { color: #0000aa; font-style: italic } /* Comment.Special */
|
9
|
+
.highlight .gd { color: #aa0000 } /* Generic.Deleted */
|
10
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
11
|
+
.highlight .gr { color: #aa0000 } /* Generic.Error */
|
12
|
+
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
13
|
+
.highlight .gi { color: #00aa00 } /* Generic.Inserted */
|
14
|
+
.highlight .go { color: #888888 } /* Generic.Output */
|
15
|
+
.highlight .gp { color: #555555 } /* Generic.Prompt */
|
16
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
17
|
+
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
18
|
+
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
|
19
|
+
.highlight .kc { color: #0000aa } /* Keyword.Constant */
|
20
|
+
.highlight .kd { color: #0000aa } /* Keyword.Declaration */
|
21
|
+
.highlight .kn { color: #0000aa } /* Keyword.Namespace */
|
22
|
+
.highlight .kp { color: #0000aa } /* Keyword.Pseudo */
|
23
|
+
.highlight .kr { color: #0000aa } /* Keyword.Reserved */
|
24
|
+
.highlight .kt { color: #00aaaa } /* Keyword.Type */
|
25
|
+
.highlight .m { color: #009999 } /* Literal.Number */
|
26
|
+
.highlight .s { color: #aa5500 } /* Literal.String */
|
27
|
+
.highlight .na { color: #1e90ff } /* Name.Attribute */
|
28
|
+
.highlight .nb { color: #00aaaa } /* Name.Builtin */
|
29
|
+
.highlight .nc { color: #00aa00; text-decoration: underline } /* Name.Class */
|
30
|
+
.highlight .no { color: #aa0000 } /* Name.Constant */
|
31
|
+
.highlight .nd { color: #888888 } /* Name.Decorator */
|
32
|
+
.highlight .ni { color: #800000; font-weight: bold } /* Name.Entity */
|
33
|
+
.highlight .nf { color: #00aa00 } /* Name.Function */
|
34
|
+
.highlight .nn { color: #00aaaa; text-decoration: underline } /* Name.Namespace */
|
35
|
+
.highlight .nt { color: #1e90ff; font-weight: bold } /* Name.Tag */
|
36
|
+
.highlight .nv { color: #aa0000 } /* Name.Variable */
|
37
|
+
.highlight .ow { color: #0000aa } /* Operator.Word */
|
38
|
+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
39
|
+
.highlight .mf { color: #009999 } /* Literal.Number.Float */
|
40
|
+
.highlight .mh { color: #009999 } /* Literal.Number.Hex */
|
41
|
+
.highlight .mi { color: #009999 } /* Literal.Number.Integer */
|
42
|
+
.highlight .mo { color: #009999 } /* Literal.Number.Oct */
|
43
|
+
.highlight .sb { color: #aa5500 } /* Literal.String.Backtick */
|
44
|
+
.highlight .sc { color: #aa5500 } /* Literal.String.Char */
|
45
|
+
.highlight .sd { color: #aa5500 } /* Literal.String.Doc */
|
46
|
+
.highlight .s2 { color: #aa5500 } /* Literal.String.Double */
|
47
|
+
.highlight .se { color: #aa5500 } /* Literal.String.Escape */
|
48
|
+
.highlight .sh { color: #aa5500 } /* Literal.String.Heredoc */
|
49
|
+
.highlight .si { color: #aa5500 } /* Literal.String.Interpol */
|
50
|
+
.highlight .sx { color: #aa5500 } /* Literal.String.Other */
|
51
|
+
.highlight .sr { color: #009999 } /* Literal.String.Regex */
|
52
|
+
.highlight .s1 { color: #aa5500 } /* Literal.String.Single */
|
53
|
+
.highlight .ss { color: #0000aa } /* Literal.String.Symbol */
|
54
|
+
.highlight .bp { color: #00aaaa } /* Name.Builtin.Pseudo */
|
55
|
+
.highlight .vc { color: #aa0000 } /* Name.Variable.Class */
|
56
|
+
.highlight .vg { color: #aa0000 } /* Name.Variable.Global */
|
57
|
+
.highlight .vi { color: #aa0000 } /* Name.Variable.Instance */
|
58
|
+
.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
|
@@ -0,0 +1,46 @@
|
|
1
|
+
.highlight .hll { background-color: #ffffcc }
|
2
|
+
.highlight .c { color: #008800; font-style: italic } /* Comment */
|
3
|
+
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
4
|
+
.highlight .k { color: #000080; font-weight: bold } /* Keyword */
|
5
|
+
.highlight .cm { color: #008800; font-style: italic } /* Comment.Multiline */
|
6
|
+
.highlight .cp { color: #008080 } /* Comment.Preproc */
|
7
|
+
.highlight .c1 { color: #008800; font-style: italic } /* Comment.Single */
|
8
|
+
.highlight .cs { color: #008800; font-weight: bold } /* Comment.Special */
|
9
|
+
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
|
10
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
11
|
+
.highlight .gr { color: #aa0000 } /* Generic.Error */
|
12
|
+
.highlight .gh { color: #999999 } /* Generic.Heading */
|
13
|
+
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
|
14
|
+
.highlight .go { color: #888888 } /* Generic.Output */
|
15
|
+
.highlight .gp { color: #555555 } /* Generic.Prompt */
|
16
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
17
|
+
.highlight .gu { color: #aaaaaa } /* Generic.Subheading */
|
18
|
+
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
|
19
|
+
.highlight .kc { color: #000080; font-weight: bold } /* Keyword.Constant */
|
20
|
+
.highlight .kd { color: #000080; font-weight: bold } /* Keyword.Declaration */
|
21
|
+
.highlight .kn { color: #000080; font-weight: bold } /* Keyword.Namespace */
|
22
|
+
.highlight .kp { color: #000080; font-weight: bold } /* Keyword.Pseudo */
|
23
|
+
.highlight .kr { color: #000080; font-weight: bold } /* Keyword.Reserved */
|
24
|
+
.highlight .kt { color: #000080; font-weight: bold } /* Keyword.Type */
|
25
|
+
.highlight .m { color: #0000FF } /* Literal.Number */
|
26
|
+
.highlight .s { color: #0000FF } /* Literal.String */
|
27
|
+
.highlight .na { color: #FF0000 } /* Name.Attribute */
|
28
|
+
.highlight .nt { color: #000080; font-weight: bold } /* Name.Tag */
|
29
|
+
.highlight .ow { font-weight: bold } /* Operator.Word */
|
30
|
+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
31
|
+
.highlight .mf { color: #0000FF } /* Literal.Number.Float */
|
32
|
+
.highlight .mh { color: #0000FF } /* Literal.Number.Hex */
|
33
|
+
.highlight .mi { color: #0000FF } /* Literal.Number.Integer */
|
34
|
+
.highlight .mo { color: #0000FF } /* Literal.Number.Oct */
|
35
|
+
.highlight .sb { color: #0000FF } /* Literal.String.Backtick */
|
36
|
+
.highlight .sc { color: #800080 } /* Literal.String.Char */
|
37
|
+
.highlight .sd { color: #0000FF } /* Literal.String.Doc */
|
38
|
+
.highlight .s2 { color: #0000FF } /* Literal.String.Double */
|
39
|
+
.highlight .se { color: #0000FF } /* Literal.String.Escape */
|
40
|
+
.highlight .sh { color: #0000FF } /* Literal.String.Heredoc */
|
41
|
+
.highlight .si { color: #0000FF } /* Literal.String.Interpol */
|
42
|
+
.highlight .sx { color: #0000FF } /* Literal.String.Other */
|
43
|
+
.highlight .sr { color: #0000FF } /* Literal.String.Regex */
|
44
|
+
.highlight .s1 { color: #0000FF } /* Literal.String.Single */
|
45
|
+
.highlight .ss { color: #0000FF } /* Literal.String.Symbol */
|
46
|
+
.highlight .il { color: #0000FF } /* Literal.Number.Integer.Long */
|
@@ -0,0 +1,34 @@
|
|
1
|
+
.highlight .hll { background-color: #ffffcc }
|
2
|
+
.highlight .c { font-style: italic } /* Comment */
|
3
|
+
.highlight .err { border: 1px solid #FF0000 } /* Error */
|
4
|
+
.highlight .k { font-weight: bold } /* Keyword */
|
5
|
+
.highlight .cm { font-style: italic } /* Comment.Multiline */
|
6
|
+
.highlight .c1 { font-style: italic } /* Comment.Single */
|
7
|
+
.highlight .cs { font-style: italic } /* Comment.Special */
|
8
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
9
|
+
.highlight .gh { font-weight: bold } /* Generic.Heading */
|
10
|
+
.highlight .gp { font-weight: bold } /* Generic.Prompt */
|
11
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
12
|
+
.highlight .gu { font-weight: bold } /* Generic.Subheading */
|
13
|
+
.highlight .kc { font-weight: bold } /* Keyword.Constant */
|
14
|
+
.highlight .kd { font-weight: bold } /* Keyword.Declaration */
|
15
|
+
.highlight .kn { font-weight: bold } /* Keyword.Namespace */
|
16
|
+
.highlight .kr { font-weight: bold } /* Keyword.Reserved */
|
17
|
+
.highlight .s { font-style: italic } /* Literal.String */
|
18
|
+
.highlight .nc { font-weight: bold } /* Name.Class */
|
19
|
+
.highlight .ni { font-weight: bold } /* Name.Entity */
|
20
|
+
.highlight .ne { font-weight: bold } /* Name.Exception */
|
21
|
+
.highlight .nn { font-weight: bold } /* Name.Namespace */
|
22
|
+
.highlight .nt { font-weight: bold } /* Name.Tag */
|
23
|
+
.highlight .ow { font-weight: bold } /* Operator.Word */
|
24
|
+
.highlight .sb { font-style: italic } /* Literal.String.Backtick */
|
25
|
+
.highlight .sc { font-style: italic } /* Literal.String.Char */
|
26
|
+
.highlight .sd { font-style: italic } /* Literal.String.Doc */
|
27
|
+
.highlight .s2 { font-style: italic } /* Literal.String.Double */
|
28
|
+
.highlight .se { font-weight: bold; font-style: italic } /* Literal.String.Escape */
|
29
|
+
.highlight .sh { font-style: italic } /* Literal.String.Heredoc */
|
30
|
+
.highlight .si { font-weight: bold; font-style: italic } /* Literal.String.Interpol */
|
31
|
+
.highlight .sx { font-style: italic } /* Literal.String.Other */
|
32
|
+
.highlight .sr { font-style: italic } /* Literal.String.Regex */
|
33
|
+
.highlight .s1 { font-style: italic } /* Literal.String.Single */
|
34
|
+
.highlight .ss { font-style: italic } /* Literal.String.Symbol */
|
@@ -0,0 +1,61 @@
|
|
1
|
+
.highlight .hll { background-color: #ffffcc }
|
2
|
+
.highlight .c { color: #808080 } /* Comment */
|
3
|
+
.highlight .err { color: #F00000; background-color: #F0A0A0 } /* Error */
|
4
|
+
.highlight .k { color: #008000; font-weight: bold } /* Keyword */
|
5
|
+
.highlight .o { color: #303030 } /* Operator */
|
6
|
+
.highlight .cm { color: #808080 } /* Comment.Multiline */
|
7
|
+
.highlight .cp { color: #507090 } /* Comment.Preproc */
|
8
|
+
.highlight .c1 { color: #808080 } /* Comment.Single */
|
9
|
+
.highlight .cs { color: #cc0000; font-weight: bold } /* Comment.Special */
|
10
|
+
.highlight .gd { color: #A00000 } /* Generic.Deleted */
|
11
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
12
|
+
.highlight .gr { color: #FF0000 } /* Generic.Error */
|
13
|
+
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
14
|
+
.highlight .gi { color: #00A000 } /* Generic.Inserted */
|
15
|
+
.highlight .go { color: #808080 } /* Generic.Output */
|
16
|
+
.highlight .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */
|
17
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
18
|
+
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
19
|
+
.highlight .gt { color: #0040D0 } /* Generic.Traceback */
|
20
|
+
.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */
|
21
|
+
.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */
|
22
|
+
.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */
|
23
|
+
.highlight .kp { color: #003080; font-weight: bold } /* Keyword.Pseudo */
|
24
|
+
.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */
|
25
|
+
.highlight .kt { color: #303090; font-weight: bold } /* Keyword.Type */
|
26
|
+
.highlight .m { color: #6000E0; font-weight: bold } /* Literal.Number */
|
27
|
+
.highlight .s { background-color: #fff0f0 } /* Literal.String */
|
28
|
+
.highlight .na { color: #0000C0 } /* Name.Attribute */
|
29
|
+
.highlight .nb { color: #007020 } /* Name.Builtin */
|
30
|
+
.highlight .nc { color: #B00060; font-weight: bold } /* Name.Class */
|
31
|
+
.highlight .no { color: #003060; font-weight: bold } /* Name.Constant */
|
32
|
+
.highlight .nd { color: #505050; font-weight: bold } /* Name.Decorator */
|
33
|
+
.highlight .ni { color: #800000; font-weight: bold } /* Name.Entity */
|
34
|
+
.highlight .ne { color: #F00000; font-weight: bold } /* Name.Exception */
|
35
|
+
.highlight .nf { color: #0060B0; font-weight: bold } /* Name.Function */
|
36
|
+
.highlight .nl { color: #907000; font-weight: bold } /* Name.Label */
|
37
|
+
.highlight .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */
|
38
|
+
.highlight .nt { color: #007000 } /* Name.Tag */
|
39
|
+
.highlight .nv { color: #906030 } /* Name.Variable */
|
40
|
+
.highlight .ow { color: #000000; font-weight: bold } /* Operator.Word */
|
41
|
+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
42
|
+
.highlight .mf { color: #6000E0; font-weight: bold } /* Literal.Number.Float */
|
43
|
+
.highlight .mh { color: #005080; font-weight: bold } /* Literal.Number.Hex */
|
44
|
+
.highlight .mi { color: #0000D0; font-weight: bold } /* Literal.Number.Integer */
|
45
|
+
.highlight .mo { color: #4000E0; font-weight: bold } /* Literal.Number.Oct */
|
46
|
+
.highlight .sb { background-color: #fff0f0 } /* Literal.String.Backtick */
|
47
|
+
.highlight .sc { color: #0040D0 } /* Literal.String.Char */
|
48
|
+
.highlight .sd { color: #D04020 } /* Literal.String.Doc */
|
49
|
+
.highlight .s2 { background-color: #fff0f0 } /* Literal.String.Double */
|
50
|
+
.highlight .se { color: #606060; font-weight: bold; background-color: #fff0f0 } /* Literal.String.Escape */
|
51
|
+
.highlight .sh { background-color: #fff0f0 } /* Literal.String.Heredoc */
|
52
|
+
.highlight .si { background-color: #e0e0e0 } /* Literal.String.Interpol */
|
53
|
+
.highlight .sx { color: #D02000; background-color: #fff0f0 } /* Literal.String.Other */
|
54
|
+
.highlight .sr { color: #000000; background-color: #fff0ff } /* Literal.String.Regex */
|
55
|
+
.highlight .s1 { background-color: #fff0f0 } /* Literal.String.Single */
|
56
|
+
.highlight .ss { color: #A06000 } /* Literal.String.Symbol */
|
57
|
+
.highlight .bp { color: #007020 } /* Name.Builtin.Pseudo */
|
58
|
+
.highlight .vc { color: #306090 } /* Name.Variable.Class */
|
59
|
+
.highlight .vg { color: #d07000; font-weight: bold } /* Name.Variable.Global */
|
60
|
+
.highlight .vi { color: #3030B0 } /* Name.Variable.Instance */
|
61
|
+
.highlight .il { color: #0000D0; font-weight: bold } /* Literal.Number.Integer.Long */
|
@@ -0,0 +1,169 @@
|
|
1
|
+
/* cran Theme
|
2
|
+
*
|
3
|
+
* Based on https://cran.r-project.org/
|
4
|
+
* Copyright 2020, All rights reserved
|
5
|
+
*
|
6
|
+
* Code licensed under the MIT license
|
7
|
+
*
|
8
|
+
* @author Diego H <https://github.com/dieghernan/>
|
9
|
+
*/
|
10
|
+
|
11
|
+
/*
|
12
|
+
* Variables
|
13
|
+
*/
|
14
|
+
|
15
|
+
$bg: #F8F8F8; // Background
|
16
|
+
$number: #099;
|
17
|
+
$literal: #990073;
|
18
|
+
$operator: #687687; // And parent
|
19
|
+
$comment: #998; //font-style: italic
|
20
|
+
$keyword: #900; //font-weight: bold
|
21
|
+
$identifier: #000000;
|
22
|
+
$string: #d14;
|
23
|
+
|
24
|
+
|
25
|
+
/*
|
26
|
+
* Styles
|
27
|
+
*/
|
28
|
+
|
29
|
+
code {
|
30
|
+
color:$string;
|
31
|
+
font-weight: bold;
|
32
|
+
}
|
33
|
+
|
34
|
+
.highlight {
|
35
|
+
pre {
|
36
|
+
background: $bg;
|
37
|
+
color: $identifier;
|
38
|
+
}
|
39
|
+
|
40
|
+
code {
|
41
|
+
font-weight:normal;
|
42
|
+
}
|
43
|
+
.hll,
|
44
|
+
.s,
|
45
|
+
.sa,
|
46
|
+
.sb,
|
47
|
+
.sc,
|
48
|
+
.dl,
|
49
|
+
.sd,
|
50
|
+
.s2,
|
51
|
+
.se,
|
52
|
+
.sh,
|
53
|
+
.si,
|
54
|
+
.sx,
|
55
|
+
.sr,
|
56
|
+
.s1,
|
57
|
+
.ss {
|
58
|
+
color: $string;
|
59
|
+
}
|
60
|
+
|
61
|
+
.go {
|
62
|
+
color: $identifier;
|
63
|
+
font-weight: bold;
|
64
|
+
}
|
65
|
+
|
66
|
+
.err,
|
67
|
+
.g,
|
68
|
+
.l,
|
69
|
+
.n,
|
70
|
+
.x,
|
71
|
+
.ge,
|
72
|
+
.gr,
|
73
|
+
.gh,
|
74
|
+
.gi,
|
75
|
+
.gp,
|
76
|
+
.gs,
|
77
|
+
.gu,
|
78
|
+
.gt,
|
79
|
+
.ld,
|
80
|
+
.no,
|
81
|
+
.nd,
|
82
|
+
.ni,
|
83
|
+
.ne,
|
84
|
+
.nn,
|
85
|
+
.nx,
|
86
|
+
.py,
|
87
|
+
.w,
|
88
|
+
.bp {
|
89
|
+
color: $identifier;
|
90
|
+
}
|
91
|
+
|
92
|
+
.gh,
|
93
|
+
.gi,
|
94
|
+
.gu {
|
95
|
+
font-weight: bold;
|
96
|
+
}
|
97
|
+
|
98
|
+
.bp {
|
99
|
+
font-style: italic;
|
100
|
+
}
|
101
|
+
|
102
|
+
.c,
|
103
|
+
.ch,
|
104
|
+
.cm,
|
105
|
+
.cpf,
|
106
|
+
.c1,
|
107
|
+
.cs {
|
108
|
+
color: $comment;
|
109
|
+
font-style: italic;
|
110
|
+
}
|
111
|
+
|
112
|
+
.kd,
|
113
|
+
.kt,
|
114
|
+
.nb,
|
115
|
+
.nl,
|
116
|
+
.nv,
|
117
|
+
.vc,
|
118
|
+
.vg,
|
119
|
+
.vi,
|
120
|
+
.vm {
|
121
|
+
color: $keyword;
|
122
|
+
font-style: bold;
|
123
|
+
}
|
124
|
+
|
125
|
+
.kd,
|
126
|
+
.nb,
|
127
|
+
.nl,
|
128
|
+
.nv,
|
129
|
+
.vc,
|
130
|
+
.vg,
|
131
|
+
.vi,
|
132
|
+
.vm {
|
133
|
+
font-style: italic;
|
134
|
+
}
|
135
|
+
|
136
|
+
.na,
|
137
|
+
.nc,
|
138
|
+
.nf,
|
139
|
+
.fm {
|
140
|
+
color: $literal;
|
141
|
+
}
|
142
|
+
|
143
|
+
.k,
|
144
|
+
.p,
|
145
|
+
.o,
|
146
|
+
.cp,
|
147
|
+
.kc,
|
148
|
+
.kn,
|
149
|
+
.kp,
|
150
|
+
.kr,
|
151
|
+
.nt,
|
152
|
+
.ow {
|
153
|
+
color: $operator;
|
154
|
+
}
|
155
|
+
|
156
|
+
.m,
|
157
|
+
.mb,
|
158
|
+
.mf,
|
159
|
+
.mh,
|
160
|
+
.mi,
|
161
|
+
.mo,
|
162
|
+
.il {
|
163
|
+
color: $number;
|
164
|
+
}
|
165
|
+
|
166
|
+
.gd {
|
167
|
+
color: $literal;
|
168
|
+
}
|
169
|
+
}
|