Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Makefile.core.mk
Original file line number Diff line number Diff line change
Expand Up @@ -139,16 +139,16 @@ archive-version:
netlify_install:
@npm init -y
@npm install --omit=dev --global \
sass@v1.52.1 \
typescript@v4.7.2 \
svgstore-cli@v1.3.2 \
@babel/core@v7.18.2 \
@babel/cli@v7.17.10 \
@babel/preset-env@v7.18.2
sass@v1.82.0 \
typescript@v5.7.2 \
svgstore-cli@v2.0.1 \
@babel/core@v7.26.0 \
@babel/cli@v7.25.9 \
@babel/preset-env@v7.26.0
@npm install --omit=dev --save-dev \
[email protected]
@npm install --save \
core-js@3.31.1
core-js@3.39.0

netlify: netlify_install
@scripts/gen_site.sh
Expand Down
34 changes: 17 additions & 17 deletions assets/sass/themes/_dark-theme-syntax.scss
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// PrismJS 1.14.0
// http://prismjs.com/download.html#themes=prism-tomorrow&languages=clike+javascript+bash+docker+go+java+protobuf+python+yaml
// PrismJS 1.29.0
// https://prismjs.com/download.html#themes=prism-tomorrow&languages=clike+javascript+bash+docker+go+java+protobuf+python+yaml
//
// prism.js tomorrow night eighties for JavaScript, CoffeeScript, CSS and HTML
// Based on https://github.com/chriskempson/tomorrow-theme
// @author Rose Pritchard

.dark-theme {
.token.comment,
.token.block-comment,
Expand All @@ -13,71 +13,71 @@
.token.cdata {
color: #999;
}

.token.punctuation {
color: #ccc;
}

.token.tag,
.token.attr-name,
.token.namespace,
.token.deleted {
color: #e2777a;
}

.token.function-name {
color: #6196cc;
}

.token.boolean,
.token.number,
.token.function {
color: #f08d49;
}

.token.property,
.token.class-name,
.token.constant,
.token.symbol {
color: #f8c555;
}

.token.selector,
.token.important,
.token.atrule,
.token.keyword,
.token.builtin {
color: #dda9d8;
color: #cc99cd;
}

.token.string,
.token.char,
.token.attr-value,
.token.regex,
.token.variable {
color: #7ec699;
}

.token.operator,
.token.entity,
.token.url {
color: #67cdcc;
}

.token.important,
.token.bold {
font-weight: bold;
}

.token.italic {
font-style: italic;
}

.token.entity {
cursor: help;
}

.token.inserted {
color: green;
}
}
}
33 changes: 17 additions & 16 deletions assets/sass/themes/_light-theme-syntax.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// PrismJS 1.14.0
// http://prismjs.com/download.html#themes=prism&languages=clike+javascript+bash+docker+go+java+protobuf+python+yaml
// PrismJS 1.29.0
// https://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript
//
// prism.js default theme for JavaScript, CSS and HTML
// Based on dabblet (http://dabblet.com)
Expand All @@ -9,15 +9,15 @@
.token.prolog,
.token.doctype,
.token.cdata {
color: slategray;
color: slategray;
}

.token.punctuation {
color: #999;
color: #999;
}

.namespace {
opacity: .7;
.token.namespace {
opacity: .7;
}

.token.property,
Expand All @@ -27,7 +27,7 @@
.token.constant,
.token.symbol,
.token.deleted {
color: #905;
color: #905;
}

.token.selector,
Expand All @@ -36,44 +36,45 @@
.token.char,
.token.builtin,
.token.inserted {
color: #690;
color: #690;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
color: $textCodeColor;
color: $textCodeColor;
/* This background color was intended by the author of this theme. */
background: hsla(0, 0%, 100%, .5);
}

.token.atrule,
.token.attr-value,
.token.keyword {
color: #07a;
color: #07a;
}

.token.function,
.token.class-name {
color: $textCodeColor;
color: $textCodeColor;
}

.token.regex,
.token.important,
.token.variable {
color: #516baa;
color: #e90;
}

.token.important,
.token.bold {
font-weight: bold;
font-weight: bold;
}

.token.italic {
font-style: italic;
font-style: italic;
}

.token.entity {
cursor: help;
cursor: help;
}

8 changes: 4 additions & 4 deletions netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@

[build.environment]
HUGO_VERSION = "0.139.3"
NODE_VERSION = "18.18.2"
NODE_VERSION = "20.18.0"
BUILD_WITH_CONTAINER = "0"
GO_VERSION = "1.21.3"
PYTHON_VERSION = "3.8"
RUBY_VERSION = "3.0.6"
GO_VERSION = "1.23.3"
PYTHON_VERSION = "3.12.3"
RUBY_VERSION = "3.2.2"

[[headers]]
for = "/*"
Expand Down
Loading