Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wangchucheng/hugo-eureka.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWang Chucheng <ccwangchn@gmail.com>2020-05-15 11:26:07 +0300
committerWang Chucheng <ccwangchn@gmail.com>2020-05-15 11:26:07 +0300
commit864f08c0c12c072d499f71e55b6beb9963042d52 (patch)
tree68965ceff6167d71b6afcf6b671cbddd0adfadc5 /assets/css/base.css
parente753af0c7a75770ea5c931cdef2e0034bac889af (diff)
style: add semantic color
Diffstat (limited to 'assets/css/base.css')
-rw-r--r--assets/css/base.css22
1 files changed, 15 insertions, 7 deletions
diff --git a/assets/css/base.css b/assets/css/base.css
index 3359edc..b871eef 100644
--- a/assets/css/base.css
+++ b/assets/css/base.css
@@ -1,12 +1,20 @@
:root{
- @apply font-serif bg-tertiary;
- --color-primary: #38B2AC;
- --color-secondary: #FBFBFC;
- --color-tertiary: #F2F2F7;
+ @apply font-serif bg-primary-bg text-primary-text;
+ --color-eureka: #38B2AC;
+ --color-primary-bg: rgba(242,242,247,1.00);
+ --color-secondary-bg: rgba(255,255,255,1.00);
+ --color-tertiary-bg: rgba(120,120,128,0.20);
+ --color-primary-text: rgba(0,0,0,0.85);
+ --color-secondary-text: rgba(0,0,0,0.65);
+ --color-tertiary-text: rgba(0,0,0,0.45);
}
.dark {
- --color-primary: #38B2AC;
- --color-secondary: #303030;
- --color-tertiary: #000000;
+ --color-eureka: #38B2AC;
+ --color-primary: rgba(0,0,0,1.00);
+ --color-secondary: rgba(28,28,30,1.00);
+ --color-tertiary: rgba(44,44,46,1.00);
+ --color-primary-text: rgba(255,255,255,0.85);
+ --color-secondary-text: rgba(255,255,255,0.65);
+ --color-tertiary-text: rgba(255,255,255,0.45);
} \ No newline at end of file