Skip to content

Commit

Permalink
Corrected relative URLs to parchment and checkbox check SVGs. 🎉 (#284)
Browse files Browse the repository at this point in the history
  • Loading branch information
kgar authored Jan 27, 2024
1 parent 17cb3a8 commit 13ed3e0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/theme/default-dark-theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ export const defaultDarkTheme: Tidy5eTheme = {
'--t5ek-context-outline-color': 'rgba(0, 0, 0, 0.4)',
'--t5ek-context-shadow-color': 'rgba(0, 0, 0, 0.65)',
'--t5ek-check-default-background-image':
"url('/modules/tidy5e-sheet-kgar/images/check-dark-unchecked.svg')",
"url('../../modules/tidy5e-sheet-kgar/images/check-dark-unchecked.svg')",
'--t5ek-check-checked-background-image':
"url('/modules/tidy5e-sheet-kgar/images/check-light-checked.svg')",
"url('../../modules/tidy5e-sheet-kgar/images/check-light-checked.svg')",
'--t5ek-checkbox-font-color': 'rgba(255, 255, 255, 0.8)',
'--t5ek-checkbox-outline-color': 'rgba(50, 50, 50, 1)',
'--t5ek-checkbox-unchecked-color': 'rgba(75, 75, 75, 1)',
Expand Down
6 changes: 3 additions & 3 deletions src/theme/default-light-theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ export const defaultLightTheme: Tidy5eTheme = {
'--t5ek-context-outline-color': 'rgba(0, 0, 0, 0.4)',
'--t5ek-context-shadow-color': 'rgba(0, 0, 0, 0.65)',
'--t5ek-check-default-background-image':
"url('/modules/tidy5e-sheet-kgar/images/check-dark-unchecked.svg')",
"url('../../modules/tidy5e-sheet-kgar/images/check-dark-unchecked.svg')",
'--t5ek-check-checked-background-image':
"url('/modules/tidy5e-sheet-kgar/images/check-dark-checked.svg')",
"url('../../modules/tidy5e-sheet-kgar/images/check-dark-checked.svg')",
'--t5ek-checkbox-font-color': 'rgba(0, 0, 0, 0.9)',
'--t5ek-checkbox-outline-color': 'rgba(150, 150, 150, 1)',
'--t5ek-checkbox-unchecked-color': '#d8d7d1',
Expand All @@ -101,7 +101,7 @@ export const defaultLightTheme: Tidy5eTheme = {
'rgba(0, 0, 0, 1)',
'--t5ek-inventory-grid-hover-use-item-contrast-text-shadow-color':
'rgba(255, 255, 255, 1)',
'--t5ek-item-info-card-background': "url('../../../ui/parchment.jpg')",
'--t5ek-item-info-card-background': "url('../../ui/parchment.jpg')",
'--t5ek-content-entity-link-color': 'var(--t5ek-primary-font-color)',
'--t5ek-content-entity-link-hover-color': 'var(--t5ek-white)',
'--t5ek-content-entity-link-background': 'var(--t5ek-faintest-color)',
Expand Down

0 comments on commit 13ed3e0

Please sign in to comment.