[v10.0.x] DarkTheme: Fix dark theme shadows (#68599)
DarkTheme: Fix dark theme shadows (#68358)
* DarkTheme: Fix dark theme shadows
* Update
(cherry picked from commit 37791e7a01)
Co-authored-by: Torkel Ödegaard <torkel@grafana.com>
This commit is contained in:
co-authored by
Torkel Ödegaard
parent
303bb6c5a8
commit
bc5674cdee
@@ -11,9 +11,9 @@ export interface ThemeShadows {
|
||||
export function createShadows(colors: ThemeColors): ThemeShadows {
|
||||
if (colors.mode === 'dark') {
|
||||
return {
|
||||
z1: '0px 1px 2px rgba(24, 26, 27, 0.75)',
|
||||
z2: '0px 4px 8px rgba(24, 26, 27, 0.75)',
|
||||
z3: '0px 8px 24px rgb(1,4,9)',
|
||||
z1: '0px 1px 2px rgba(1, 4, 9, 0.75)',
|
||||
z2: '0px 4px 8px rgba(1, 4, 9, 0.75)',
|
||||
z3: '0px 8px 24px rgb(1, 4, 9)',
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user