|
After Width: | Height: | Size: 5.2 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 982 KiB |
|
After Width: | Height: | Size: 129 KiB |
@ -0,0 +1,10 @@ |
|||||
|
import style from './style.json' |
||||
|
function importAll(r) { |
||||
|
const obj = {} |
||||
|
r.keys().forEach(key => { |
||||
|
obj[key.replace('./', '').replace('.png', '')] = r(key) |
||||
|
}) |
||||
|
return obj |
||||
|
} |
||||
|
const images = importAll(require.context('./', false, /\.(png|jpe?g|svg)$/)) |
||||
|
export default { ...style, images } |
||||
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
@ -0,0 +1,66 @@ |
|||||
|
{ |
||||
|
"global": { |
||||
|
"background": "center / cover no-repeat" |
||||
|
}, |
||||
|
"weather": { |
||||
|
"iconColor": "#000", |
||||
|
"textColor": "#000" |
||||
|
}, |
||||
|
"time": { |
||||
|
"timeColor": "#000", |
||||
|
"monthColor": "#000", |
||||
|
"weekColor": "rgba(0, 0, 0, 0.4)" |
||||
|
}, |
||||
|
"searchBar": { |
||||
|
"backBorderRadius": "12px", |
||||
|
"background": "#4D4441", |
||||
|
"border": "2px solid rgba(255, 255, 255, 0.2)", |
||||
|
"borderRadius": "12px", |
||||
|
"placeholderColor": "rgba(255, 255, 255, 0.4)", |
||||
|
"stickBg": "#D3AB80" |
||||
|
}, |
||||
|
"menu": { |
||||
|
"bg1": "#fff", |
||||
|
"bg2": "#fff", |
||||
|
"bg3": "#fff", |
||||
|
"bg4": "#fff", |
||||
|
"bg5": "#fff", |
||||
|
"activeBg1": "#6E5E54", |
||||
|
"activeBg2": "#6E5E54", |
||||
|
"activeBg3": "#6E5E54", |
||||
|
"activeBg4": "#6E5E54", |
||||
|
"activeBg5": "#6E5E54", |
||||
|
"color": "rgba(0, 0, 0, 0.6)", |
||||
|
"activeColor": "rgba(0, 0, 0, 0.8)", |
||||
|
"indexColor": "#FFFFFF" |
||||
|
}, |
||||
|
"index": { |
||||
|
"recTitleColor": "#fff", |
||||
|
"guideBackground": "#E4CEB1", |
||||
|
"guideBorder": "none", |
||||
|
"guideTopBg": "linear-gradient(180deg, #64554D 0%, #B39B85 100%)", |
||||
|
"guideQrcodeBg": "rgba(255, 255, 255, 0.4)", |
||||
|
"foodBg": "linear-gradient(180deg, #64554D 0%, #B39B85 100%)", |
||||
|
"foodBorder": "4px solid #6E5E54", |
||||
|
"recBg": "linear-gradient(180deg, #64554D 0%, #B39B85 100%)", |
||||
|
"recBorder": "none" |
||||
|
}, |
||||
|
"brand": { |
||||
|
"floorNameColor": "#fff", |
||||
|
"floorMetaColor": "rgba(255, 255, 255, 0.8)" |
||||
|
}, |
||||
|
"carousel": { |
||||
|
"titleColor": "#fff", |
||||
|
"introColor": "#fff" |
||||
|
}, |
||||
|
"map": { |
||||
|
"background": "#F2EEE8" |
||||
|
}, |
||||
|
"billboard": { |
||||
|
"background": "linear-gradient(180deg, #342F2D 0%, #534946 100%)" |
||||
|
}, |
||||
|
"guide": { |
||||
|
"floorBg": "linear-gradient(90deg, #BA9B7A 0%, #DBC2A1 100%)", |
||||
|
"allFloorBg": "left / 150px 100% no-repeat linear-gradient(180deg, #64554D 0%, #B39B85 100%), #F2EEE8" |
||||
|
} |
||||
|
} |
||||
@ -1,4 +1,5 @@ |
|||||
import main from './main/index' |
import main from './main/index' |
||||
import fashion from './fashion/index' |
import fashion from './fashion/index' |
||||
|
import highend from './highend/index' |
||||
|
|
||||
export default { main, fashion } |
|
||||
|
export default { main, fashion, highend } |
||||
|
|||||
|
After Width: | Height: | Size: 5.2 KiB |