Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 54 additions & 0 deletions src/themes/csharpDark.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
import { ITheme } from "./ITheme";

export const CSharpDark: ITheme = {
/** Display name */
DisplayName: 'CSharpDark',
/** Code styles */
CodeStyles: {
Keyword: {
Color: '569cd6'
},
Comment: {
Color: '56a64a'
},
Plaintext: {
Color: 'dedede'
},
Punctuation: {
Color: 'dedede'
},
String: {
Color: 'dadada'
},
Literal: {
Color: 'dadada'
},
Type: {
Color: '4ec9b0'
},
Tag: {
Color: 'd7bb7d'
},
AttributeName: {
Color: '4ec9b0'
},
AttributeValue: {
Color: '569cd6'
},
Decimal: {
Color: 'b5cea8'
},
NoCode: {
Color: '000',
BackgroundColor: 'none'
}
},
// Background color
BackgroundStyle: {
BackgroundColor: '1e1e1e'
},
// Line number background colors
LineNumberStyle: {
Color: 'e0e0e0'
}
}
4 changes: 3 additions & 1 deletion src/themes/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { A11YLight } from './A11YLight';
import { AtelierCaveLight } from './AtelierCaveLight';
import { AtelierCaveDark } from './AtelierCaveDark';
import { BlueHintGray } from './BlueHintGray';
import { CSharpDark } from './CSharpDark';
import { ChatGPTDark } from './ChatGPTDark';
import { ThonnyDefaultLight } from './ThonnyDefaultLight';

Expand Down Expand Up @@ -44,8 +45,9 @@ export const Themes: ThemeDictionary = {
AtelierCaveLight,
AtelierCaveDark,
BlueHintGray,
CSharpDark,
ChatGPTDark,
ThonnyDefaultLight,
ThonnyDefaultLight
}

export function GetLineNumberStyle(theme: string) {
Expand Down
Loading