/**app.wxss**/ .container { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding: 200rpx 0; box-sizing: border-box; } .dark-primary-color { background: #303F9F; } .default-primary-color { background: #3F51B5; } .dark-primary-color-font { color: #303F9F; } .default-primary-color-font { color: #3F51B5; } .light-primary-color { background: #C5CAE9; } .accent-color { background: #FF4081; } .primary-text-color { color: #212121; } .divider-color { background: #BDBDBD; } .block-background-color { background: #F0F0F0; } /* new color here */ .primary-text-color { color: #009195 !important; } .primary-background-color { background: #009195 !important; } .primary-border-color { border: 2rpx solid #009195 !important; } .secondary-text-color { color: #707070 !important; } .secondary-background-color { background: #EDEDED !important; } .white-text-color { color: #FFFFFF !important; } page { background: #EDEDED; }