Skip to content

Commit

Permalink
More color adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
SecretSaturn committed Dec 29, 2024
1 parent b49fb37 commit c2a84e0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<!-- <link rel="prefetch" as="fetch" href="/whip-003.json" data-whip-003 /> -->
</head>
<body>
<div id="root" class="bg-slate-100 dark:bg-neutral-900 text-black dark:text-white"></div>
<div id="root" class="bg-[#feebda] dark:bg-neutral-900 text-black dark:text-white"></div>
<script>
// fix the keplr window type error when there are no node polyfills
var global = global || window
Expand Down
2 changes: 1 addition & 1 deletion src/assets/scss/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ body {
}

body:not(.dark) {
@apply bg-slate-100;
@apply bg-[#feebda];
}
body.dark {
@apply bg-neutral-900;
Expand Down
4 changes: 1 addition & 3 deletions src/components/Title.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ export default function Title(props: IProps) {
function TitleContent() {
return (
<div className={[`group text-center mb-4 max-w-6xl mx-auto`, props.className ? props.className : ''].join(' ')}>
<h1 className="font-bold text-4xl inline text-transparent bg-clip-text bg-gradient-to-r from-cyan-500 to-purple-500">
{props.title}
</h1>
<h1 className="font-bold text-4xl inline text-transparent bg-clip-text bg-[#FF3912]">{props.title}</h1>
{props.tooltip ? (
<span className="ml-2 relative bottom-1.5 text-neutral-600 dark:text-neutral-400 group-hover:text-black dark:group-hover:text-white transition-colors cursor-pointer">
<FontAwesomeIcon icon={faInfoCircle} />
Expand Down
2 changes: 1 addition & 1 deletion src/pages/portfolio/components/AddressQR.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default function AddressQR() {

return (
<div className="group text-center md:text-left h-full">
<div className="h-full flex items-center bg-white dark:bg-neutral-800 border border-neutral-200 dark:border-neutral-700 p-8 rounded-xl">
<div className="h-full flex items-center bg-white dark:bg-neutral-800 border border-neutral-200 dark:border-neutral-700 px-4 py-0 rounded-xl">
<div className="flex flex-row items-center gap-4 w-full">
<div className="flex-1 flex flex-col gap-6 md:items-center overflow-hidden">
{/* Address */}
Expand Down
2 changes: 1 addition & 1 deletion tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ export default {
'500': '#737373',
'600': '#525252',
'700': '#404040',
'750': '#333333', // for hover effect on bg-neutral-800 items
'750': '#333333',
'800': '#262626',
'900': '#171717',
'950': '#0a0a0a'
Expand Down

0 comments on commit c2a84e0

Please sign in to comment.