Path: blob/main/desktop/electron/src/xterm-theme.ts
1067 views
import { ITheme, Terminal } from "xterm";12export default function setTheme(3terminal: Terminal,4themeName: keyof typeof colorThemes5): void {6let t = colorThemes[themeName];7if (t == null) {8t = colorThemes["default"];9if (t == null) {10// can't happen11return;12}13}14const colors = t.colors;15if (colors == null) {16// satisfies typescript17return;18}19const theme: ITheme = {20background: colors[17],21foreground: colors[16],22cursor: colors[16],23cursorAccent: colors[17],24selectionBackground: "rgba(128, 128, 160, 0.25)",25black: colors[0],26red: colors[1],27green: colors[2],28yellow: colors[3],29blue: colors[4],30magenta: colors[5],31cyan: colors[6],32white: colors[7],33brightBlack: colors[8],34brightRed: colors[9],35brightGreen: colors[10],36brightYellow: colors[11],37brightBlue: colors[12],38brightMagenta: colors[13],39brightCyan: colors[14],40brightWhite: colors[15],41};42terminal.options.theme = theme;43}4445// TODO -- factor into another package such as "xterm-themes". Maybe somebody else already did that?4647export const colorThemes = {48"solarized-dark": {49comment: "Solarized dark",50colors: [51"#eee8d5",52"#dc322f",53"#859900",54"#b58900",55"#268bd2",56"#d33682",57"#2aa198",58"#073642",59"#fdf6e3",60"#cb4b16",61"#93a1a1",62"#839496",63"#657b83",64"#6c71c4",65"#586e75",66"#002b36",67"#eee8d5",68"#002b36",69],70},71"solarized-light": {72comment: "Solarized light",73colors: [74"#073642",75"#dc322f",76"#859900",77"#b58900",78"#268bd2",79"#d33682",80"#2aa198",81"#eee8d5",82"#002b36",83"#cb4b16",84"#586e75",85"#657b83",86"#839496",87"#6c71c4",88"#93a1a1",89"#fdf6e3",90"#073642",91"#fdf6e3",92],93},94"low-contrast": {95comment: "Low contrast dark",96colors: [97"#222222",98"#9e5641",99"#6c7e55",100"#caaf2b",101"#7fb8d8",102"#956d9d",103"#4c8ea1",104"#808080",105"#454545",106"#cc896d",107"#c4df90",108"#ffe080",109"#b8ddea",110"#c18fcb",111"#6bc1d0",112"#cdcdcd",113"#cdcdcd",114"#343434",115],116},117"raven-dark": {118comment: "Raven dark",119colors: [120"#3f3e3b",121"#b36b65",122"#4f8c61",123"#8d7e45",124"#6181b8",125"#a46d9d",126"#0e8e9a",127"#b6b7bb",128"#7f7f83",129"#efa29b",130"#86c596",131"#c7b679",132"#9ab9f3",133"#dfa4d7",134"#5ec7d4",135"#feffff",136"#a6a7aa",137"#32312e",138],139},140default: {141comment: "Default black on white",142colors: [143"#2e3436",144"#cc0000",145"#4e9a06",146"#c4a000",147"#3465a4",148"#75507b",149"#06989a",150"#d3d7cf",151"#555753",152"#ef2929",153"#8ae234",154"#fce94f",155"#729fcf",156"#ad7fa8",157"#34e2e2",158"#eeeeec",159"#000000",160"#ffffff",161],162},163mono: {164comment: "Monochrome dark",165colors: [166"#000000",167"#434343",168"#6b6b6b",169"#969696",170"#4a4a4a",171"#707070",172"#a9a9a9",173"#ffffff",174"#222222",175"#434343",176"#a5a5a5",177"#e5e5e5",178"#4d4d4d",179"#747474",180"#c4c4c4",181"#dedede",182"#b0b0b0",183"#282828",184],185},186tango: {187comment: "Tango light",188colors: [189"#2e3436",190"#cc0000",191"#4e9a06",192"#c4a000",193"#3465a4",194"#75507b",195"#06989a",196"#d3d7cf",197"#555753",198"#ef2929",199"#8ae234",200"#fce94f",201"#729fcf",202"#ad7fa8",203"#34e2e2",204"#eeeeec",205"#000000",206"#ffffff",207],208},209infred: {210comment: "Infinite red dark",211colors: [212"#6c6c6c",213"#e9897c",214"#b6e77d",215"#ecebbe",216"#a9cdeb",217"#ea96eb",218"#c9caec",219"#f2f2f2",220"#747474",221"#f99286",222"#c3f786",223"#fcfbcc",224"#b6defb",225"#fba1fb",226"#d7d9fc",227"#e2e2e2",228"#f2f2f2",229"#101010",230],231},232"raven-light": {233comment: "Raven light",234colors: [235"#e7dfd5",236"#f46864",237"#00ae58",238"#ac9510",239"#389bff",240"#dc6dd2",241"#00b0cc",242"#5b636b",243"#8f98a1",244"#b42b33",245"#007525",246"#726000",247"#0066cb",248"#a03398",249"#007793",250"#00020e",251"#69717a",252"#faf0e6",253],254},255};256257258