49 lines
1023 B
CSS
Raw Normal View History

2019-07-17 14:58:36 +02:00
body {
--mainBackgroundColor: #111111;
2022-03-15 14:09:23 +01:00
--mainForegroundColor: #e0e0e1;
--mainBackgroundHoverColor: #30343b;
2020-05-20 11:37:58 +02:00
2021-05-11 15:43:34 +02:00
/* Compat with PeerTube < 3.2 */
2019-07-17 14:58:36 +02:00
--submenuColor: rgb(32, 32, 32);
2020-05-20 11:37:58 +02:00
2021-05-11 15:43:34 +02:00
--submenuBackgroundColor: rgb(32, 32, 32);
2022-03-15 14:09:23 +01:00
--inputForegroundColor: #e0e0e1;
--inputBackgroundColor: #30363d;
2022-06-28 11:35:36 +02:00
--inputPlaceholderColor: #aaa;
2022-03-15 14:09:23 +01:00
--textareaForegroundColor: #e0e0e1;
--textareaBackgroundColor: #30363d;
--markdownTextareaBackgroundColor: #30363d;
2020-05-20 13:52:38 +02:00
2022-03-15 14:09:23 +01:00
--greyForegroundColor: #bbb;
--greyBackgroundColor: #232830;
--greySecondaryBackgroundColor: #30343b;
2020-05-22 11:23:00 +02:00
2022-03-15 14:09:23 +01:00
--actionButtonColor: #bbb;
2020-05-22 11:23:00 +02:00
--activatedActionButtonColor: #fff;
2021-05-31 17:26:19 +02:00
--channelBackgroundColor: rgb(32, 32, 32);
2022-06-28 11:35:36 +02:00
--mainColorVeryLight: #30363d;
2019-07-17 14:58:36 +02:00
}
2022-03-15 15:06:29 +01:00
.icon-logo {
min-width: 29px;
min-height: 29px;
background-color: #fff;
background-origin: content-box;
border-radius: 20px;
padding: 3px 4px 3px 8px;
}
2022-06-28 11:35:36 +02:00
.dropdown-menu,
.dropdown-divider {
border-color: var(--inputBorderColor);
}
.dropdown-header {
color: var(--mainForegroundColor);
}