| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- /**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: #469298;
- }
- .primary-background-color {
- background: #469298;
- }
- .secondary-text-color {
- color: #707070;
- }
- .secondary-background-color {
- background: #EDEDED
- }
- .white-text-color {
- color: #FFFFFF;
- }
- page {
- background: #EDEDED;
- }
|