From afcd72bdf1f620eacaa9da2dd189358f84c56c42 Mon Sep 17 00:00:00 2001
From: Lucas <md.lucasd@gmail.com>
Date: Thu, 14 Dec 2023 14:45:25 -0300
Subject: [PATCH] remove material var css

---
 src/components/Button/styles.tsx | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/components/Button/styles.tsx b/src/components/Button/styles.tsx
index d24d600..c7975d6 100644
--- a/src/components/Button/styles.tsx
+++ b/src/components/Button/styles.tsx
@@ -131,7 +131,7 @@ export const Touchable = styled(TouchableComponent)<ButtonWrapperProps>`
     bottom: 0;
     left: 0;
     right: 0;
-    background-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
+    background-color: rgb(255, 255, 255);
     opacity: 0;
     transition: opacity 0.2s;
   }
@@ -144,7 +144,7 @@ export const Touchable = styled(TouchableComponent)<ButtonWrapperProps>`
     padding: 50%;
     width: 32px; /* Safari */
     height: 32px; /* Safari */
-    background-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
+    background-color: rgb(255, 255, 255);
     opacity: 0;
     transform: translate(-50%, -50%) scale(1);
     transition: opacity 1s, transform 0.5s;