diff --git a/assets/icons/plus.svg b/assets/icons/plus.svg
new file mode 100644
index 0000000..0a72686
--- /dev/null
+++ b/assets/icons/plus.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/styles/Apps/PlayerSheet.css b/styles/Apps/PlayerSheet.css
index d6704b7..0594564 100644
--- a/styles/Apps/PlayerSheet.css
+++ b/styles/Apps/PlayerSheet.css
@@ -70,12 +70,23 @@
.item-list-header {
display: flex;
flex-direction: row;
+ align-items: center;
gap: 8px;
border-radius: 6px 6px 0 0;
padding: 6px 6px 4px;
margin-bottom: 2px;
background: var(--item-list-header-background);
color: var(--item-list-header-colour);
+
+ button {
+ padding: 2px;
+ border: none;
+ aspect-ratio: 1;
+ height: unset;
+ min-height: unset;
+ background: var(--item-list-header-input-background);
+ color: var(--item-list-header-input-colour);
+ }
}
.item-list {
diff --git a/styles/themes/dark.css b/styles/themes/dark.css
index ae7a855..fa87c25 100644
--- a/styles/themes/dark.css
+++ b/styles/themes/dark.css
@@ -13,21 +13,24 @@
/* Actor Sheet Variables */
/* Use --steel-850 as the main sheet background */
- --inventory-summary-background: #171e26;
- --inventory-summary-colour: white;
- --inventory-input-background: #2b3642;
- --inventory-input-colour: white;
- --inventory-input-disabled-colour: gray;
- --item-list-header-background: #171e26;
- --item-list-header-colour: white;
+ --inventory-summary-background: var(--steel-800);
+ --inventory-summary-colour: var(--steel-100);
+ --inventory-input-background: var(--steel-650);
+ --inventory-input-colour: var(--steel-100);
+ --inventory-input-disabled-colour: var(--steel-350);
+
+ --item-list-header-background: var(--steel-800);
+ --item-list-header-colour: var(--steel-100);
+ --item-list-header-input-background: var(--steel-650);
+ --item-list-header-input-colour: var(--steel-100);
--item-card-background: #1d262f;
- --item-card-colour: white;
- --item-card-header-background: #242d38;
- --item-card-header-colour: white;
- --item-card-header-input-background: #2b3642;
- --item-card-header-input-colour: white;
- --item-card-header-disabled-input-colour: gray;
+ --item-card-colour: var(--steel-100);
+ --item-card-header-background: var(--steel-700);
+ --item-card-header-colour: var(--steel-100);
+ --item-card-header-input-background: var(--steel-650);
+ --item-card-header-input-colour: var(--steel-100);
+ --item-card-header-disabled-input-colour: var(--steel-350);
/* Item Sheet Variables */
--item-sheet-colour: var(--steel-100);
diff --git a/templates/PlayerSheet/item-lists.hbs b/templates/PlayerSheet/item-lists.hbs
index 3b5737f..cd67ee3 100644
--- a/templates/PlayerSheet/item-lists.hbs
+++ b/templates/PlayerSheet/item-lists.hbs
@@ -39,6 +39,19 @@
{{#each itemGroups as | group |}}