Skip to content
This repository has been archived by the owner on Nov 29, 2023. It is now read-only.

Commit

Permalink
Add modalOverlay color
Browse files Browse the repository at this point in the history
  • Loading branch information
arnemolland committed Aug 7, 2021
1 parent 867d15a commit fd97b4a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/lib/theme/colors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ export type Colors = {
card: string
shadow: string
overlay: string
modalOverlay: string
}

const fallback: Colors = {
Expand Down Expand Up @@ -65,7 +66,8 @@ const fallback: Colors = {
onToggle: palette.white,
card: palette.emperorGray,
shadow: palette.black20,
overlay: palette.black40
overlay: palette.black40,
modalOverlay: palette.black60
}

export default fallback
1 change: 1 addition & 0 deletions src/lib/theme/palette.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export const palette = {
emperorGray: '#36393b',
codGray: '#434647',
abbeyGray: '#525556',
black60: 'rgba(0, 0, 0, 0.6)',
black50: 'rgba(0, 0, 0, 0.5)',
black40: 'rgba(0, 0, 0, 0.4)',
black30: 'rgba(0, 0, 0, 0.3)',
Expand Down

0 comments on commit fd97b4a

Please sign in to comment.