Skip to content
Merged
Changes from 1 commit
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
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';
Comment thread
DevTKSS marked this conversation as resolved.
Outdated

type ThemeDictionary = { [key: string]: ITheme };

Expand Down Expand Up @@ -41,7 +42,8 @@ export const Themes: ThemeDictionary = {
A11YLight,
AtelierCaveLight,
AtelierCaveDark,
BlueHintGray
BlueHintGray,
csharpDark
}

export function GetLineNumberStyle(theme: string) {
Expand Down