diff --git a/src/App.vue b/src/App.vue
index a4981b8..41d25f9 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -22,6 +22,9 @@ import Navigation from './components/Sections/Navigation.vue'
--clr-white: #ffffff;
--clr-black: #000000;
+ --clr-disabled: #dcdcdc;
+ --clr-disabled-contrast: #636363;
+
--clr-neutral: #595959;
--clr-neutral-contrast: #ffffff;
diff --git a/src/components/Button.vue b/src/components/Button.vue
index 399851e..7262c4a 100644
--- a/src/components/Button.vue
+++ b/src/components/Button.vue
@@ -1,5 +1,5 @@
-
@@ -8,9 +8,10 @@
type Props = {
color ?: 'success' | 'error' | 'neutral' | 'inherit'
display ?: 'elevated' | 'text' | 'icon'
+ disabled ?: boolean
}
-const { color = 'success', display = 'elevated' } = defineProps()
+const { color = 'success', display = 'elevated', disabled = false } = defineProps()
\ No newline at end of file