diff --git a/docs/handbook/meta/syntax.md b/docs/handbook/meta/syntax.md index 6f2a30c..e62b7a6 100644 --- a/docs/handbook/meta/syntax.md +++ b/docs/handbook/meta/syntax.md @@ -42,6 +42,10 @@ Currently, the available configured colors are based off the built-in admonition :octicons-beaker-16:{ .example-purple } `:octicons-beaker-16:{ .example-purple }` :octicons-quote-16:{ .quote-grey } `:octicons-quote-16:{ .quote-grey }` +Additionally, "StarCat blue" is available: +:logos-starcat-circle:{ .starcat-blue } `:logos-starcat-circle:{ .starcat-blue }` +:logos-starcat-circle:{ .starcat-paleblue } `:logos-starcat-circle:{ .starcat-paleblue }` + :octicons-flame-16:{ .tip-teal } Want to know how these colors work? Check out [:simple-forgejo: the CSS in the source](https://git.starcat.systems/starcatsys/about/src/branch/main/docs/stylesheets/extra.css). ## Admonitions diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index 1868549..caf93c7 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -34,6 +34,12 @@ mask-image: var(--md-admonition-icon--page-moved); } +.starcat-blue { + color: #00FFFF; + } +.starcat-paleblue { + color: #6FCDDD; + } .note-blue { color: #448AFF; }