Skip to content

Commit

Permalink
[DOCS][ACCESIBILITY] 4276: Code Snippet contrast (#4402)
Browse files Browse the repository at this point in the history
fixes #4276 

Added VS code-based theme w better contrast for code snippets.
  • Loading branch information
zateutsch authored Oct 2, 2023
1 parent 546844e commit 6b7ef7a
Show file tree
Hide file tree
Showing 2 changed files with 170 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@shoelace-style/shoelace@2.0.0-beta.75/dist/themes/light.css" />
<script type="module" src="https://cdn.jsdelivr.net/npm/@shoelace-style/shoelace@2.0.0-beta.75/dist/shoelace.js"></script>

<link rel="stylesheet" href="styles/global.css">
<link rel="stylesheet" href="styles/global.css"/>
<link rel="stylesheet" href="styles/vs-prism.css" />
<link rel="manifest" href="manifest.json" />

</head>
Expand Down
168 changes: 168 additions & 0 deletions docs/styles/vs-prism.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,168 @@
/**
* VS theme by Andrew Lock (https://andrewlock.net)
* Inspired by Visual Studio syntax coloring
*/

code[class*="language-"],
pre[class*="language-"] {
color: #393A34;
font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace;
direction: ltr;
text-align: left;
white-space: pre;
word-spacing: normal;
word-break: normal;
font-size: .9em;
line-height: 1.2em;

-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;

-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
}

pre > code[class*="language-"] {
font-size: 1em;
}

pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
background: #C1DEF1;
}

pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
code[class*="language-"]::selection, code[class*="language-"] ::selection {
background: #C1DEF1;
}

/* Code blocks */
pre[class*="language-"] {
padding: 1em;
margin: .5em 0;
overflow: auto;
border: 1px solid #dddddd;
background-color: white;
}

/* Inline code */
:not(pre) > code[class*="language-"] {
padding: .2em;
padding-top: 1px;
padding-bottom: 1px;
background: #f8f8f8;
border: 1px solid #dddddd;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
color: #008000;
font-style: italic;
}

.token.namespace {
opacity: .7;
}

.token.string {
color: #A31515;
}

.token.punctuation,
.token.operator {
color: #393A34; /* no highlight */
}

.token.url,
.token.symbol,
.token.number,
.token.boolean,
.token.variable,
.token.constant,
.token.inserted {
color: #076673;
}

.token.atrule,
.token.keyword,
.token.attr-value,
.language-autohotkey .token.selector,
.language-json .token.boolean,
.language-json .token.number,
code[class*="language-css"] {
color: #0000ff;
}

.token.function {
color: #393A34;
}

.token.deleted,
.language-autohotkey .token.tag {
color: #9a050f;
}

.token.selector,
.language-autohotkey .token.keyword {
color: #00009f;
}

.token.important {
color: #e90;
}

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

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

.token.class-name,
.language-json .token.property {
color: #2B91AF;
}

.token.tag,
.token.selector {
color: #800000;
}

.token.attr-name,
.token.property,
.token.regex,
.token.entity {
color: #ff0000;
}

.token.directive.tag .tag {
background: #ffff00;
color: #393A34;
}

/* overrides color-values for the Line Numbers plugin
* http://prismjs.com/plugins/line-numbers/
*/
.line-numbers.line-numbers .line-numbers-rows {
border-right-color: #a5a5a5;
}

.line-numbers .line-numbers-rows > span:before {
color: #2B91AF;
}

/* overrides color-values for the Line Highlight plugin
* http://prismjs.com/plugins/line-highlight/
*/
.line-highlight.line-highlight {
background: rgba(193, 222, 241, 0.2);
background: -webkit-linear-gradient(left, rgba(193, 222, 241, 0.2) 70%, rgba(221, 222, 241, 0));
background: linear-gradient(to right, rgba(193, 222, 241, 0.2) 70%, rgba(221, 222, 241, 0));
}

0 comments on commit 6b7ef7a

Please sign in to comment.