Skip to content

Instantly share code, notes, and snippets.

@craigthomasfrost
Created February 4, 2020 10:46
Show Gist options
  • Select an option

  • Save craigthomasfrost/91575e09b6907eb154ebf8bf236123cc to your computer and use it in GitHub Desktop.

Select an option

Save craigthomasfrost/91575e09b6907eb154ebf8bf236123cc to your computer and use it in GitHub Desktop.
const cssBeams = `
.hljs {
display: block;
color: #FFFFFF;
line-height: 1.65;
}
.hljs-comment,
.hljs-quote {
color: #95a0ba;
font-style: italic;
}
.hljs-keyword,
.hljs-subst {
color: #00FFAA;
}
.hljs-string,
.hljs-doctag {
color: #bfb1ff;
}
.hljs-selector-id,
.hljs-selector-class,
.hljs-selector-tag,
.hljs-section,
.hljs-type {
color: #C6FFEC;
}
.hljs-params,
.hljs-literal,
.hljs-number {
color: #82FFD5;
}
.hljs-title {
color: #FFFFFF;
font-weight: normal;
}
.hljs-tag {
color: #515a6f !important;
}
.hljs-tag,
.hljs-name {
color: #515a6f;
font-weight: normal;
}
.hljs-attribute,
.hljs-attr {
color: #C6FFEC;
}
.hljs-variable,
.hljs-template-variable {
color: #008080;
}
.hljs-regexp,
.hljs-link {
color: #b68;
}
.hljs-symbol,
.hljs-bullet {
color: #C6FFEC;
}
.hljs-built_in,
.hljs-builtin-name {
color: #C193FC;
}
.hljs-meta {
color: #27ae5f;
font-weight: bold;
}
.hljs-deletion {
background: #fdd;
}
.hljs-addition {
background: #dfd;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}
`;
export default cssBeams;
const cssChatkit = `
.hljs {
display: block;
color: #C1C1FF;
line-height: 1.65;
}
.hljs-comment,
.hljs-quote {
color: #8180C8;
font-style: italic;
}
.hljs-keyword,
.hljs-subst {
color: #FF8473;
}
.hljs-string,
.hljs-doctag {
color: #FFD6D6;
}
.hljs-selector-id,
.hljs-selector-class,
.hljs-selector-tag,
.hljs-section,
.hljs-type {
color: #FFD6D6;
}
.hljs-params,
.hljs-literal,
.hljs-number {
color: #FFD6D6;
}
.hljs-title {
color: #FFFFFF;
font-weight: normal;
}
.hljs-tag {
color: #515a6f !important;
}
.hljs-tag,
.hljs-name {
color: #515a6f;
font-weight: normal;
}
.hljs-attribute,
.hljs-attr {
color: #FFADA9;
}
.hljs-variable,
.hljs-template-variable {
color: #008080;
}
.hljs-regexp,
.hljs-link {
color: #b68;
}
.hljs-symbol,
.hljs-bullet {
color: #C6FFEC;
}
.hljs-built_in,
.hljs-builtin-name {
color: #C193FC;
}
.hljs-meta {
color: #27ae5f;
font-weight: bold;
}
.hljs-deletion {
background: #fdd;
}
.hljs-addition {
background: #dfd;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}
`;
export default cssChatkit;
const cssGlobal = `
.hljs {
display: block;
}
.hljs-comment,
.hljs-quote {
color: #9389b7;
font-style: italic;
}
.hljs-keyword,
.hljs-subst {
color: #b200fd;
}
.hljs-string,
.hljs-doctag {
color: #6c62be;
}
.hljs-selector-id,
.hljs-selector-class,
.hljs-selector-tag,
.hljs-section,
.hljs-type {
color: #5654ae;
}
.hljs-params,
.hljs-literal,
.hljs-number {
color: #724608;
}
.hljs-title {
color: #7000ff;
font-weight: normal;
}
.hljs-tag {
color: #515a6f !important;
}
.hljs-tag,
.hljs-name {
color: #515a6f;
font-weight: normal;
}
.hljs-attribute,
.hljs-attr {
color: #a26612;
}
.hljs-variable,
.hljs-template-variable {
color: #008080;
}
.hljs-regexp,
.hljs-link {
color: #b68;
}
.hljs-symbol,
.hljs-bullet {
color: #990073;
}
.hljs-built_in,
.hljs-builtin-name {
color: #7000ff;
}
.hljs-meta {
color: #730ec2;
font-weight: bold;
}
.hljs-deletion {
background: #fdd;
}
.hljs-addition {
background: #dfd;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}
`;
export default cssGlobal;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment