f0dfbfc3d7
RequirementsTest / build (windows-latest, 3.9) (push) Has been cancelled
RequirementsTest / build (macos-latest, 3.9) (push) Has been cancelled
RequirementsTest / build (ubuntu-latest, 3.9) (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Pylint / build (3.9) (push) Has been cancelled
34 lines
548 B
CSS
34 lines
548 B
CSS
/* colors variables settings */
|
|
h1{
|
|
text-align:center;
|
|
}
|
|
:root {
|
|
--bgColor: #fff;
|
|
--textDefault: #000;
|
|
--primary: #0B4CFF;
|
|
--secondary: #FF0B70;
|
|
--terciary: #00BA5B;
|
|
}
|
|
|
|
:root[data-theme='dark'] {
|
|
--bgColor: #000;
|
|
--textDefault: #fff;
|
|
--primary: #ACC2FF;
|
|
--secondary: #FFAFD0;
|
|
--terciary: #86E1B3;
|
|
}
|
|
body {
|
|
background: var(--bgColor);
|
|
color: var(--textDefault);
|
|
}
|
|
|
|
h2 {
|
|
text-align:center;
|
|
}
|
|
|
|
.classNameExample {
|
|
background: var(--terciary);
|
|
border: 1px solid var(--secondary);
|
|
}
|
|
|