Skip to content

Commit

Permalink
Background color matching with Studio
Browse files Browse the repository at this point in the history
Some more general color changes to align colors with
Studio.
  • Loading branch information
Arnei committed Jul 20, 2023
1 parent c869b41 commit 09dd6ab
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/main/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ function Header() {

const logo = css({
marginLeft: '6px',
opacity: '0.8',

// Unset a bunch of CSS to keep the logo clean
outline: 'unset',
Expand Down
8 changes: 4 additions & 4 deletions src/themes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Theme } from "./redux/themeSlice";
import { COLORS } from "./util/appkit";

export const lightMode: Theme = {
background: COLORS.neutral15,
background: COLORS.neutral10,
menu_background: COLORS.neutral05,
text: COLORS.neutral90,
error: '#ed1741',
Expand Down Expand Up @@ -43,7 +43,7 @@ export const lightMode: Theme = {
subtitle_segment_bg: 'rgba(0, 0, 0, 0.4)',
subtitle_segment_border: `1px solid ${COLORS.neutral80}`,
subtitle_segment_text: COLORS.neutral05,
header_bg: COLORS.neutral80,
header_bg: COLORS.neutral60,
metadata_highlight: COLORS.neutral50,
clock_bg: COLORS.neutral15,
clock_border: '2px solid transparent',
Expand All @@ -55,7 +55,7 @@ export const lightMode: Theme = {
};

export const darkMode: Theme = {
background: COLORS.neutral15,
background: COLORS.neutral10,
menu_background: COLORS.neutral05,
text: COLORS.neutral90,
error: 'rgba(237, 23, 65, 0.8)',
Expand Down Expand Up @@ -94,7 +94,7 @@ export const darkMode: Theme = {
subtitle_segment_bg: 'rgba(0, 0, 0, 0.4)',
subtitle_segment_border: `1px solid ${COLORS.neutral80}`,
subtitle_segment_text: COLORS.neutral90,
header_bg: COLORS.neutral30,
header_bg: COLORS.neutral20,
metadata_highlight: COLORS.neutral50,
clock_bg: COLORS.neutral15,
clock_border: '2px solid transparent',
Expand Down

0 comments on commit 09dd6ab

Please sign in to comment.