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

base.css « css « assets - github.com/wangchucheng/hugo-eureka.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: db1115f1a61d4b4b799cbe5ac9866bb890e148a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
:root {
  @apply bg-primary-bg text-secondary-text font-serif;
  --color-eureka: #38b2ac;
  --color-primary-bg: rgba(242, 242, 247, 1);
  --color-secondary-bg: rgba(255, 255, 255, 1);
  --color-tertiary-bg: rgba(242, 242, 247, 1);
  --color-primary-text: rgba(0, 0, 0, 0.85);
  --color-secondary-text: rgba(0, 0, 0, 0.7);
  --color-tertiary-text: rgba(0, 0, 0, 0.55);
}

.dark {
  --color-eureka: #38b2ac;
  --color-primary-bg: rgba(0, 0, 0, 1);
  --color-secondary-bg: rgba(28, 28, 30, 1);
  --color-tertiary-bg: rgba(44, 44, 46, 1);
  --color-primary-text: rgba(255, 255, 255, 0.85);
  --color-secondary-text: rgba(255, 255, 255, 0.7);
  --color-tertiary-text: rgba(255, 255, 255, 0.55);
}

h1,
h2,
h3 {
  @apply text-primary-text;
}

a:hover,
a:hover * {
  @apply text-eureka transition duration-300 ease-in-out;
}

code {
  direction: ltr;
}