-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.21 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.21 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "frames",
"displayName": "Frames",
"description": "A modern, panel-focused visual overhaul with rounded aesthetics and refined typography.",
"version": "0.1.0",
"publisher": "studioframes",
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Themes"
],
"icon": "assets/icon.png",
"keywords": [
"theme",
"dark",
"light",
"modern",
"minimal",
"rounded"
],
"contributes": {
"themes": [
{
"label": "Frames Charcoal",
"uiTheme": "vs-dark",
"path": "./themes/frames-charcoal.json"
},
{
"label": "Frames OLED",
"uiTheme": "vs-dark",
"path": "./themes/frames-oled.json"
},
{
"label": "Frames Light Minimal",
"uiTheme": "vs",
"path": "./themes/frames-light-minimal.json"
},
{
"label": "Frames Light Sepia",
"uiTheme": "vs",
"path": "./themes/frames-light-sepia.json"
},
{
"label": "Frames Cyber Neon",
"uiTheme": "vs-dark",
"path": "./themes/frames-cyber-neon.json"
},
{
"label": "Frames Sunset Rose",
"uiTheme": "vs",
"path": "./themes/frames-sunset-rose.json"
}
],
"iconThemes": [
{
"id": "frames-icons",
"label": "Frames Icons (Desaturated Seti)",
"path": "./icons/seti-frames-icon-theme.json"
}
],
"configurationDefaults": {
"workbench.iconTheme": "frames-icons",
"editor.fontFamily": "'JetBrains Mono', monospace",
"markdown.preview.fontFamily": "'Inter', sans-serif",
"chat.editor.fontFamily": "'Inter', sans-serif",
"editor.fontLigatures": true,
"editor.lineHeight": 1.8,
"editor.letterSpacing": 0.5,
"workbench.activityBar.location": "top",
"workbench.tree.indent": 16,
"editor.smoothScrolling": true,
"editor.cursorSmoothCaretAnimation": "on",
"editor.cursorBlinking": "smooth",
"workbench.list.smoothScrolling": true,
"terminal.integrated.smoothScrolling": true,
"window.commandCenter": true,
"workbench.layoutControl.enabled": false
}
}
}