|
| 1 | +import { |
| 2 | + a11yDark, |
| 3 | + atomDark, |
| 4 | + base16AteliersulphurpoolLight, |
| 5 | + cb, |
| 6 | + coldarkCold, |
| 7 | + coldarkDark, |
| 8 | + coyWithoutShadows, |
| 9 | + coy, |
| 10 | + darcula, |
| 11 | + dark, |
| 12 | + dracula, |
| 13 | + duotoneDark, |
| 14 | + duotoneEarth, |
| 15 | + duotoneForest, |
| 16 | + duotoneLight, |
| 17 | + duotoneSea, |
| 18 | + duotoneSpace, |
| 19 | + funky, |
| 20 | + ghcolors, |
| 21 | + gruvboxDark, |
| 22 | + gruvboxLight, |
| 23 | + holiTheme, |
| 24 | + hopscotch, |
| 25 | + lucario, |
| 26 | + materialDark, |
| 27 | + materialLight, |
| 28 | + materialOceanic, |
| 29 | + nightOwl, |
| 30 | + nord, |
| 31 | + okaidia, |
| 32 | + oneDark, |
| 33 | + oneLight, |
| 34 | + pojoaque, |
| 35 | + prism, |
| 36 | + shadesOfPurple, |
| 37 | + solarizedDarkAtom, |
| 38 | + solarizedlight, |
| 39 | + synthwave84, |
| 40 | + tomorrow, |
| 41 | + twilight, |
| 42 | + vs, |
| 43 | + vscDarkPlus, |
| 44 | + xonokai, |
| 45 | + zTouch, |
| 46 | +} from "react-syntax-highlighter/dist/esm/styles/prism"; |
| 47 | + |
| 48 | +import { HighlighterStyleType } from "@types"; |
| 49 | + |
| 50 | +export const highlighterStyles: HighlighterStyleType[] = [ |
| 51 | + { name: "a11yDark", style: a11yDark }, |
| 52 | + { name: "atomDark", style: atomDark }, |
| 53 | + { |
| 54 | + name: "base16AteliersulphurpoolLight", |
| 55 | + style: base16AteliersulphurpoolLight, |
| 56 | + }, |
| 57 | + { name: "cb", style: cb }, |
| 58 | + { name: "coldarkCold", style: coldarkCold }, |
| 59 | + { name: "coldarkDark", style: coldarkDark }, |
| 60 | + { name: "coyWithoutShadows", style: coyWithoutShadows }, |
| 61 | + { name: "coy", style: coy }, |
| 62 | + { name: "darcula", style: darcula }, |
| 63 | + { name: "dark", style: dark }, |
| 64 | + { name: "dracula", style: dracula }, |
| 65 | + { name: "duotoneDark", style: duotoneDark }, |
| 66 | + { name: "duotoneEarth", style: duotoneEarth }, |
| 67 | + { name: "duotoneForest", style: duotoneForest }, |
| 68 | + { name: "duotoneLight", style: duotoneLight }, |
| 69 | + { name: "duotoneSea", style: duotoneSea }, |
| 70 | + { name: "duotoneSpace", style: duotoneSpace }, |
| 71 | + { name: "funky", style: funky }, |
| 72 | + { name: "ghcolors", style: ghcolors }, |
| 73 | + { name: "gruvboxDark", style: gruvboxDark }, |
| 74 | + { name: "gruvboxLight", style: gruvboxLight }, |
| 75 | + { name: "holiTheme", style: holiTheme }, |
| 76 | + { name: "hopscotch", style: hopscotch }, |
| 77 | + { name: "lucario", style: lucario }, |
| 78 | + { name: "materialDark", style: materialDark }, |
| 79 | + { name: "materialLight", style: materialLight }, |
| 80 | + { name: "materialOceanic", style: materialOceanic }, |
| 81 | + { name: "nightOwl", style: nightOwl }, |
| 82 | + { name: "nord", style: nord }, |
| 83 | + { name: "okaidia", style: okaidia }, |
| 84 | + { name: "oneDark", style: oneDark }, |
| 85 | + { name: "oneLight", style: oneLight }, |
| 86 | + { name: "pojoaque", style: pojoaque }, |
| 87 | + { name: "prism", style: prism }, |
| 88 | + { name: "shadesOfPurple", style: shadesOfPurple }, |
| 89 | + { name: "solarizedDarkAtom", style: solarizedDarkAtom }, |
| 90 | + { name: "solarizedlight", style: solarizedlight }, |
| 91 | + { name: "synthwave84", style: synthwave84 }, |
| 92 | + { name: "tomorrow", style: tomorrow }, |
| 93 | + { name: "twilight", style: twilight }, |
| 94 | + { name: "vs", style: vs }, |
| 95 | + { name: "vscDarkPlus", style: vscDarkPlus }, |
| 96 | + { name: "xonokai", style: xonokai }, |
| 97 | + { name: "zTouch", style: zTouch }, |
| 98 | +]; |
0 commit comments