Path: blob/main/web/ui/src/features/component/style.ts
5305 views
import React from 'react';12// Object for react-syntax-highlighter's custom theme3export const style: {4[key: string]: React.CSSProperties;5} = {6'code[class*="language-"]': {7color: 'black',8background: 'none',9fontFamily: 'Fira Code,monospace',10textAlign: 'left',11whiteSpace: 'pre',12wordSpacing: 'normal',13wordBreak: 'normal',14wordWrap: 'normal',15MozTabSize: '4',16OTabSize: '4',17tabSize: '4',18WebkitHyphens: 'none',19MozHyphens: 'none',20msHyphens: 'none',21hyphens: 'none',22},23'pre[class*="language-"]': {24background: 'none',25fontFamily: 'Fira Code,monospace',26textAlign: 'left',27whiteSpace: 'pre',28wordSpacing: 'normal',29wordBreak: 'normal',30wordWrap: 'normal',31MozTabSize: '4',32OTabSize: '4',33tabSize: '4',34WebkitHyphens: 'none',35MozHyphens: 'none',36msHyphens: 'none',37hyphens: 'none',38margin: '0.5em 0',39overflowX: 'auto',40overflowY: 'hidden',41borderRadius: '0.3em',42},43':not(pre) > code[class*="language-"]': {44background: 'none',45borderRadius: '0.3em',46whiteSpace: 'normal',47},48comment: {49color: '#d4d0ab',50},51prolog: {52color: '#d4d0ab',53},54doctype: {55color: '#d4d0ab',56},57cdata: {58color: '#d4d0ab',59},60property: {61color: '#ffa07a',62},63tag: {64color: '#ffa07a',65},66constant: {67color: '#ffa07a',68},69symbol: {70color: '#ffa07a',71},72deleted: {73color: '#ffa07a',74},75boolean: {76color: 'blue',77},78number: {79color: 'blue',80},81selector: {82color: '#abe338',83},84'attr-name': {85color: '#abe338',86},87string: {88color: 'green',89},90char: {91color: '#abe338',92},93builtin: {94color: '#abe338',95},96inserted: {97color: '#abe338',98},99entity: {100color: '#00e0e0',101cursor: 'help',102},103url: {104color: '#00e0e0',105},106'.language-css .token.string': {107color: '#00e0e0',108},109'.style .token.string': {110color: '#00e0e0',111},112variable: {113color: '#00e0e0',114},115atrule: {116color: 'grey',117},118'attr-value': {119color: 'grey',120},121function: {122color: 'grey',123},124keyword: {125color: '#00e0e0',126},127regex: {128color: '#ffd700',129},130important: {131color: '#ffd700',132fontWeight: 'bold',133},134bold: {135fontWeight: 'bold',136},137italic: {138fontStyle: 'italic',139},140};141142143