| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- $themeColor: #AAFF00;
- $grayColor: #1C1C1C;
- $tipBgColor:#2c2c2c;
- $fastColor: #00ffff;
- $sleepColor: #8961F5;
- $alertColor: #ea6c6c;
- $foodColor: #FF7A4E;
- $alertFastColor: #00ffff66;
- $alertSleepColor: #8961F566;
- $boxColor: #121212;
- $ringColor: #1c1c1c;
- $blackColor: #000000;
- $whiteColor: #ffffff;
- $boxBorderRadius:36px;
- $boxPadding:40px;
- $historyItemMarginBottom:16px;
- /* #ifdef weapp */
- .fast_sleep_text {
- background: linear-gradient(90deg, $fastColor 0%, $sleepColor 100%);
- -webkit-background-clip: text;
- background-clip: text;
- color: transparent;
- }
- /* #endif */
- /* #ifdef rn */
- .fast_sleep_text {
- // background: linear-gradient(90deg, $fastColor 0%, $sleepColor 100%);
- -webkit-background-clip: text;
- background-clip: text;
- color: transparent;
- }
- /* #endif */
|