Skip to content

Commit c0efe69

Browse files
committed
Add light version
1 parent 84dcf0f commit c0efe69

File tree

3 files changed

+154
-2
lines changed

3 files changed

+154
-2
lines changed

package.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,14 @@
3030
"contributes": {
3131
"themes": [
3232
{
33-
"label": "Aditi",
33+
"label": "Aditi Dark",
3434
"uiTheme": "vs-dark",
35-
"path": "./themes/Aditi-color-theme.json"
35+
"path": "./themes/aditi-dark.json"
36+
},
37+
{
38+
"label": "Aditi Light",
39+
"uiTheme": "vs",
40+
"path": "./themes/aditi-light.json"
3641
}
3742
]
3843
}
File renamed without changes.

themes/aditi-light.json

Lines changed: 147 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,147 @@
1+
{
2+
"name": "Aditi",
3+
"type": "dark",
4+
"colors": {
5+
"activityBar.background": "#f4f5f7",
6+
"activityBar.border": "#e3e8ef",
7+
"activityBar.dropBackground": "#31307190",
8+
"activityBarBadge.background": "#474787",
9+
"activityBarBadge.foreground": "#fff",
10+
"activityBar.foreground": "#303952",
11+
"badge.background": "#227093",
12+
"button.background": "#474787",
13+
"diffEditor.insertedTextBackground": "#33d9b233",
14+
"diffEditor.removedTextBackground": "#eb6b6b3a",
15+
"dropdown.background": "#40407a",
16+
"dropdown.listBackground": "#40407a",
17+
"editor.background": "#fff",
18+
"editor.findMatchHighlightBackground": "#feb3433d",
19+
"editor.foreground": "#303952",
20+
"editor.lineHighlightBackground": "#507b9e17",
21+
"editor.lineHighlightBorder": null,
22+
"editor.selectionBackground": "#2f2f42cc",
23+
"editor.selectionHighlightBackground": "#feb34307",
24+
"editor.selectionHighlightBorder": "#FEB343",
25+
"editorCursor.foreground": "#9E9E9E",
26+
"editorError.foreground": "#f44336",
27+
"editorGroupHeader.tabsBackground": "#fff",
28+
"editorGroupHeader.tabsBorder": "#e3e8ef",
29+
"editorGutter.addedBackground": "#75b378",
30+
"editorGutter.background": "#fff",
31+
"editorGutter.deletedBackground": "#b7735d",
32+
"editorGutter.modifiedBackground": "#0882d3",
33+
"editorHoverWidget.background": "#201531",
34+
"editorHoverWidget.border": "#2c2c54",
35+
"editorIndentGuide.activeBackground": "#ffffff52",
36+
"editorLineNumber.activeForeground": "#212529",
37+
"editorLineNumber.foreground": "#bfcada",
38+
"editorOverviewRuler.border": "#241e2c",
39+
"editorSuggestWidget.background": "#2c2c54",
40+
"editorSuggestWidget.selectedBackground": "#474787",
41+
"editorWidget.background": "#0c0517",
42+
"extensionButton.prominentBackground": "#636390",
43+
"extensionButton.prominentHoverBackground": "#218c74",
44+
"focusBorder": "#e3e8ef",
45+
"gitDecoration.modifiedResourceForeground": "#00BCD4",
46+
"gitDecoration.untrackedResourceForeground": "#7dd47d",
47+
"input.background": "#ffffff09",
48+
"input.border": "#474787",
49+
"input.foreground": "#fff",
50+
"input.placeholderForeground": "#ffffff6e",
51+
"list.activeSelectionBackground": "#dae4f1",
52+
"list.activeSelectionForeground": "#303952",
53+
"list.dropBackground": "#28284a",
54+
"list.errorForeground": "#e87b58",
55+
"list.focusBackground": "#dae4f1",
56+
"list.hoverBackground": "#dae4f1",
57+
"list.inactiveFocusBackground": "#dae4f1",
58+
"list.inactiveSelectionBackground": "#dae4f1",
59+
"list.inactiveSelectionForeground": "#303952",
60+
"notificationCenterHeader.background": "#fff",
61+
"notifications.background": "#f4f7fb",
62+
"notifications.border": none,
63+
"notificationToast.border": none,
64+
"notificationCenter.border": none,
65+
"panel.background": "#0c0517",
66+
"panel.border": "#2c2c54",
67+
"peekView.border": "#313071",
68+
"peekViewTitle.background": "#313071",
69+
"scrollbarSlider.activeBackground": "#313071",
70+
"scrollbarSlider.background": "#e1dfec63",
71+
"scrollbarSlider.hoverBackground": "#313071",
72+
"sideBar.background": "#f4f7fb",
73+
"sideBar.border": "#e3e8ef",
74+
"sideBar.foreground": "#8e8798",
75+
"sideBarSectionHeader.background": "#ebeef3",
76+
"sideBarSectionHeader.foreground": "#787dbb",
77+
"statusBar.background": "#fff",
78+
"statusBar.border": "#e3e8ef",
79+
"statusBar.debuggingBackground": "#E91E63",
80+
"statusBar.debuggingBorder": "#E91E63",
81+
"statusBar.debuggingForeground": "#ffffff",
82+
"statusBar.foreground": "#9298a2",
83+
"statusBarItem.activeBackground": "#f4f7fb",
84+
"statusBarItem.hoverBackground": "#f4f7fb",
85+
"tab.activeBackground": "#dae4f1",
86+
"tab.activeBorder": "#e3e8ef",
87+
"tab.activeForeground": "#1a1a1d",
88+
"tab.border": "#e3e8ef",
89+
"tab.inactiveBackground": "#fff",
90+
"tab.inactiveForeground": "#788692",
91+
"terminal.ansiGreen": "#68b16b",
92+
"terminal.ansiMagenta": "#b379a1",
93+
"terminal.ansiYellow": "#ceab6a",
94+
"terminal.background": "#fff",
95+
"textLink.activeForeground": "#d65093",
96+
"textLink.foreground": "#50a4d6",
97+
"welcomePage.buttonBackground": "#0c0517",
98+
"welcomePage.buttonHoverBackground": "#f7f7f715"
99+
},
100+
"tokenColors": [
101+
{
102+
"settings": {
103+
"foreground": "#303952",
104+
"background": "#fff"
105+
}
106+
},
107+
{
108+
"name": "Key",
109+
"scope": ["support.type.property-name.json"],
110+
"settings": {
111+
"foreground": "#574b90"
112+
}
113+
},
114+
{
115+
"name": "Value",
116+
"scope": ["meta.structure.dictionary.value.json"],
117+
"settings": {
118+
"foreground": "#ea8685"
119+
}
120+
},
121+
{
122+
"name": "Boolean",
123+
"scope": ["constant.language.json"],
124+
"settings": {
125+
"foreground": "#546de5"
126+
}
127+
},
128+
{
129+
"name": "Comment",
130+
"scope": ["comment", "punctuation.definition.comment"],
131+
"settings": {
132+
"fontStyle": "italic",
133+
"foreground": "#5b758a"
134+
}
135+
},
136+
{
137+
"name": "Punctuation",
138+
"scope": [
139+
"string.quoted.double.json",
140+
"punctuation.definition.string.end.json"
141+
],
142+
"settings": {
143+
"foreground": "#6a89cc"
144+
}
145+
}
146+
]
147+
}

0 commit comments

Comments
 (0)