Skip to content

Commit a4dcd51

Browse files
feat: add bee theme
1 parent c6e61b5 commit a4dcd51

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "tabee",
33
"private": true,
4-
"version": "1.0.18",
4+
"version": "1.0.0",
55
"license": "MIT",
66
"type": "module",
77
"scripts": {

src/Options.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<div class="h-full bg-base-300">
5050
<div class="px-8 pt-4">
5151
<h1 class="text-xl font-bold flex items-center gap-2">
52-
<img src="/assets/icon_16.png" alt="Tabee icon" class="w-5 h-5" />
52+
<img src="/assets/icon_32.png" alt="Tabee icon" class="w-5 h-5" />
5353
Tabee
5454
</h1>
5555
<p class="text-xs text-base-content/70 mt-1">The original Tab Modifier.</p>

src/components/options/left/Menu.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
<ul class="menu p-4 w-80 bg-base-300 text-base-content">
33
<li v-for="menuItem in props.menuItems" :key="menuItem.component">
44
<a
5-
:class="{ 'active !text-primary': menuStore.currentMenuItem?.title === menuItem.title }"
5+
:class="{
6+
active: menuStore.currentMenuItem?.title === menuItem.title,
7+
}"
68
@click.prevent="onMenuClicked(menuItem)"
79
>
810
<component :is="icons[menuItem.icon]" class="menuItem-icon" />

tailwind.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ export default {
2222
'accent-content': '#0a0a0a', // Texte foncé
2323
neutral: '#1f1f1f', // Gris très foncé
2424
'neutral-content': '#e5e7eb', // Texte clair
25-
'base-100': '#0a0a0a', // Fond presque noir
25+
'base-100': '#161616', // Fond presque noir
2626
'base-200': '#141414', // Fond très sombre
27-
'base-300': '#1e1e1e', // Fond sombre
27+
'base-300': '#121212', // Fond sombre
2828
'base-content': '#e5e7eb', // Texte principal clair
2929
info: '#3b82f6', // Bleu info
3030
'info-content': '#ffffff', // Texte blanc sur bleu

0 commit comments

Comments
 (0)