Skip to content

Commit 9913d9e

Browse files
committed
fix: activity bar styling when not on top
I always had it on top so never saw the issues when in the default position
1 parent a46aac2 commit 9913d9e

File tree

5 files changed

+81
-58
lines changed

5 files changed

+81
-58
lines changed

compose/base.ts

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,15 @@ export const baseTheme = {
5252
colors: {
5353
"editor.background": "g1",
5454
"editor.foreground": "g5",
55-
"activityBarBadge.background": "g1",
55+
56+
"activityBarBadge.background": "g4",
57+
"activityBarBadge.foreground": "g2",
58+
59+
"activityBar.background": "g1",
60+
"activityBar.foreground": "g5",
61+
"activityBar.inactiveForeground": "g4",
62+
"activityBar.activeBorder": "h1",
63+
5664
"sideBarTitle.foreground": "g4",
5765
"sideBar.background": "g1",
5866
"sideBar.foreground": "g5",

package.json

Lines changed: 50 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,52 @@
11
{
2-
"name": "dimfire",
3-
"displayName": "Dim Fire",
4-
"description": "Dim, simple, warm theme for the minimalist.",
5-
"version": "1.0.1",
6-
"publisher": "ahme-dev",
7-
"repository": {
8-
"url": "https://github.com/ahme-dev/dimfire",
9-
"type": "git"
10-
},
11-
"engines": {
12-
"vscode": "^1.97.0"
13-
},
14-
"categories": [
15-
"Themes"
16-
],
17-
"icon": "assets/icon-nobg.png",
18-
"keywords": [
19-
"dark",
20-
"dim",
21-
"warm",
22-
"minimal",
23-
"simple"
24-
],
25-
"contributes": {
26-
"themes": [
27-
{
28-
"label": "Dim Fire Night",
29-
"uiTheme": "vs-dark",
30-
"path": "./themes/Dim Fire Night-color-theme.json"
31-
},
32-
{
33-
"label": "Dim Fire Dusk",
34-
"uiTheme": "vs-dark",
35-
"path": "./themes/Dim Fire Dusk-color-theme.json"
36-
},
37-
{
38-
"label": "Dim Fire Day",
39-
"uiTheme": "vs",
40-
"path": "./themes/Dim Fire Day-color-theme.json"
41-
}
42-
]
43-
},
44-
"scripts": {
45-
"format": "biome format --write",
46-
"compose": "bun --experimental-strip-types compose/main.ts"
47-
},
48-
"devDependencies": {
49-
"@biomejs/biome": "^2.1.0",
50-
"@types/node": "^24.0.10"
51-
}
2+
"name": "dimfire",
3+
"displayName": "Dim Fire",
4+
"description": "Dim, simple, warm theme for the minimalist.",
5+
"version": "1.0.1",
6+
"publisher": "ahme-dev",
7+
"repository": {
8+
"url": "https://github.com/ahme-dev/dimfire",
9+
"type": "git"
10+
},
11+
"engines": {
12+
"vscode": "^1.97.0"
13+
},
14+
"categories": [
15+
"Themes"
16+
],
17+
"icon": "assets/icon-nobg.png",
18+
"keywords": [
19+
"dark",
20+
"dim",
21+
"warm",
22+
"minimal",
23+
"simple"
24+
],
25+
"contributes": {
26+
"themes": [
27+
{
28+
"label": "Dim Fire Night",
29+
"uiTheme": "vs-dark",
30+
"path": "./themes/Dim Fire Night-color-theme.json"
31+
},
32+
{
33+
"label": "Dim Fire Dusk",
34+
"uiTheme": "vs-dark",
35+
"path": "./themes/Dim Fire Dusk-color-theme.json"
36+
},
37+
{
38+
"label": "Dim Fire Day",
39+
"uiTheme": "vs",
40+
"path": "./themes/Dim Fire Day-color-theme.json"
41+
}
42+
]
43+
},
44+
"scripts": {
45+
"format": "biome format --write",
46+
"compose": "bun --experimental-strip-types compose/main.ts"
47+
},
48+
"devDependencies": {
49+
"@biomejs/biome": "^2.1.0",
50+
"@types/node": "^24.0.10"
51+
}
5252
}

themes/Dim Fire Day-color-theme.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@
33
"colors": {
44
"editor.background": "#f9f9f9",
55
"editor.foreground": "#4e4e4e",
6-
"activityBarBadge.background": "#f9f9f9",
6+
"activityBarBadge.background": "#afafaf",
7+
"activityBarBadge.foreground": "#e8e8e8",
8+
"activityBar.background": "#f9f9f9",
9+
"activityBar.foreground": "#4e4e4e",
10+
"activityBar.inactiveForeground": "#afafaf",
11+
"activityBar.activeBorder": "#a56b5c",
712
"sideBarTitle.foreground": "#afafaf",
813
"sideBar.background": "#f9f9f9",
914
"sideBar.foreground": "#4e4e4e",

themes/Dim Fire Dusk-color-theme.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,16 @@
22
"name": "Dim Fire Dusk",
33
"colors": {
44
"editor.background": "#212121",
5-
"editor.foreground": "#c1c1c1",
6-
"activityBarBadge.background": "#212121",
5+
"editor.foreground": "#b1b1b1",
6+
"activityBarBadge.background": "#616161",
7+
"activityBarBadge.foreground": "#2b2b2b",
8+
"activityBar.background": "#212121",
9+
"activityBar.foreground": "#b1b1b1",
10+
"activityBar.inactiveForeground": "#616161",
11+
"activityBar.activeBorder": "#5a4a3a",
712
"sideBarTitle.foreground": "#616161",
813
"sideBar.background": "#212121",
9-
"sideBar.foreground": "#c1c1c1",
14+
"sideBar.foreground": "#b1b1b1",
1015
"titleBar.activeBackground": "#212121",
1116
"titleBar.activeForeground": "#616161",
1217
"scrollbarSlider.background": "#2b2b2b",

themes/Dim Fire Night-color-theme.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,16 @@
22
"name": "Dim Fire Night",
33
"colors": {
44
"editor.background": "#171717",
5-
"editor.foreground": "#a4a4a4",
6-
"activityBarBadge.background": "#171717",
5+
"editor.foreground": "#c1c1c1",
6+
"activityBarBadge.background": "#717171",
7+
"activityBarBadge.foreground": "#272727",
8+
"activityBar.background": "#171717",
9+
"activityBar.foreground": "#c1c1c1",
10+
"activityBar.inactiveForeground": "#717171",
11+
"activityBar.activeBorder": "#5a4a3a",
712
"sideBarTitle.foreground": "#717171",
813
"sideBar.background": "#171717",
9-
"sideBar.foreground": "#a4a4a4",
14+
"sideBar.foreground": "#c1c1c1",
1015
"titleBar.activeBackground": "#171717",
1116
"titleBar.activeForeground": "#717171",
1217
"scrollbarSlider.background": "#272727",

0 commit comments

Comments
 (0)