Skip to content

Commit

Permalink
- revert colors
Browse files Browse the repository at this point in the history
- make intro text less foreign
  • Loading branch information
starknetdev committed Sep 13, 2024
1 parent cc7842c commit 159d61a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion ui/src/app/GlitchEffect.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
left : 0;
width : 100%;
height : 100%;
background: rgba(173, 216, 230, 0.1);
background: rgba(74, 246, 38, 0.1);
clip-path : polygon(0 var(--clip-top), 100% var(--clip-top), 100% var(--clip-bottom), 0 var(--clip-bottom));
}

Expand Down
4 changes: 2 additions & 2 deletions ui/src/app/components/onboarding/Intro.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const Intro = () => {
setNetwork(network! as Network);
}}
>
Play on {network}
Play for Real
</Button>
</div>
</div>
Expand All @@ -87,7 +87,7 @@ const Intro = () => {
setNetwork("katana");
}}
>
Play on Testnet
Play for Free
</Button>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion ui/src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ input[type="text"] {
font-weight : 400;
text-shadow : rgb(173, 216, 230, 0.9) 1px 0 10px;
animation : textShadow 0.3s infinite;
outline-color: rgba(173, 216, 230, 1);
outline-color: rgba(74, 246, 38, 1);
}

input[type='number']::-webkit-inner-spin-button,
Expand Down
2 changes: 1 addition & 1 deletion ui/src/app/head.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export default function Head() {
/>
{/* PWA */}
<link rel="manifest" href="/manifest.json" />
<meta name="theme-color" content="#add8e6" />
<meta name="theme-color" content="#33FF33" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
</>
);
Expand Down
4 changes: 2 additions & 2 deletions ui/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,13 @@ module.exports = {
appearance: "none",
width: "20px",
height: "20px",
"background-color": "rgba(173, 216, 230, 1)",
"background-color": "rgba(74, 246, 38, 1)",
cursor: "pointer",
},
"&::-moz-range-thumb": {
width: "20px",
height: "20px",
"background-color": "rgba(173, 216, 230, 1)",
"background-color": "rgba(74, 246, 38, 1)",
cursor: "pointer",
},
"&::-webkit-slider-runnable-track": {
Expand Down

0 comments on commit 159d61a

Please sign in to comment.