1
0
mirror of https://github.com/OpenNebula/one.git synced 2024-12-23 17:33:56 +03:00

F #3951: Fix background colors (#677)

This commit is contained in:
Sergio Betanzos 2021-01-20 10:11:02 +01:00 committed by GitHub
parent dfe158f3bf
commit 7d97645d88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,10 +6,8 @@ export default (mode = 'dark') => ({
white: '#ffffff'
},
background: {
paper: mode === 'dark' ? '#2e3440' : '#ffffff',
// PREV paper: mode === 'dark' ? '#2a2d3d' : '#eceff4',
default: mode === 'dark' ? '#242933' : '#f2f4f8'
// PREV default: mode === 'dark' ? '#222431' : '#d8dee9'
paper: mode === 'dark' ? '#2a2d3d' : '#ffffff',
default: mode === 'dark' ? '#222431' : '#f2f4f8'
},
primary: {
light: '#2a2d3d',