-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) Β· 1.05 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) Β· 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "basic-pink-theme",
"displayName": "Basic Pink Theme",
"description": "A basic theme with soft pink accents and improved readability for Korean text.",
"version": "1.2.0",
"publisher": "Hayoung Kang",
"icon": "icon.png",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Hayoung0708/basic-pink-theme.git"
},
"engines": {
"vscode": "^1.50.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Basic Dark Pink",
"uiTheme": "vs-dark",
"path": "./themes/basic_dark.json"
},
{
"label": "Basic Light Pink",
"uiTheme": "vs",
"path": "./themes/basic_light.json"
}
],
"configurationDefaults": {
"editor.fontFamily": "'Menlo', 'Monaco', 'Consolas', 'λλμ€νμ΄λΌμ΄λ Regular'",
"editor.bracketPairColorization.enabled": false
}
}
}