14 lines
149 B
CSS
14 lines
149 B
CSS
|
.lightTheme {
|
||
|
background: #fff;
|
||
|
color: #000;
|
||
|
}
|
||
|
|
||
|
.darkTheme {
|
||
|
background: #000;
|
||
|
color: #fff
|
||
|
}
|
||
|
|
||
|
.sepiaTheme {
|
||
|
background: #ece1ca;
|
||
|
color: #000;
|
||
|
}
|