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

colors.less « utilities « src - github.com/picturepan2/spectre.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c3555c1fd1ecd080099780a07c4fc0a222fad86d (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
36
37
38
39
40
41
42
// Text colors
.text-primary {
  .text-color-variant(@primary-color);
}
.text-gray {
  .text-color-variant(@gray-color);
}
.text-light {
  .text-color-variant(@light-color);
}
.text-success {
  .text-color-variant(@control-color-success);
}
.text-warning {
  .text-color-variant(@control-color-warning);
}
.text-error {
  .text-color-variant(@control-color-error);
}

// Background colors
.bg-primary {
  .bg-color-variant(@primary-color);
}
.bg-secondary {
  .bg-color-variant(@secondary-color);
}
.bg-dark {
  .bg-color-variant(@dark-color);
}
.bg-gray {
  .bg-color-variant(@bg-color);
}
.bg-success {
  .bg-color-variant(@control-color-success);
}
.bg-warning {
  .bg-color-variant(@control-color-warning);
}
.bg-error {
  .bg-color-variant(@control-color-error);
}