dark-theme.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773
  1. html.dark-theme body{
  2. color: #fcfcfc;
  3. background-color: #1a2232;
  4. }
  5. html.dark-theme ::placeholder {
  6. color: #fff !important;
  7. opacity: 0.4 !important;
  8. }
  9. /* Sidebar */
  10. html.dark-theme .sidebar-wrapper,
  11. html.dark-theme .sidebar-wrapper .sidebar-header {
  12. background-color: #1a2232;
  13. }
  14. html.dark-theme .sidebar-wrapper,
  15. html.dark-theme .sidebar-wrapper .sidebar-header {
  16. border-right: 1px solid rgb(255 255 255 / 12%);
  17. }
  18. html.dark-theme .sidebar-wrapper .sidebar-header {
  19. border-bottom: 1px solid rgb(255 255 255 / 12%);
  20. color: #fcfcfc;
  21. }
  22. html.dark-theme .sidebar-wrapper .sidebar-header .logo-text,
  23. html.dark-theme .sidebar-wrapper .sidebar-header .toggle-icon {
  24. color: #fcfcfc;
  25. }
  26. html.dark-theme .sidebar-wrapper .metismenu .mm-active>a, html.dark-theme .sidebar-wrapper .metismenu a:active, html.dark-theme .sidebar-wrapper .metismenu a:focus, html.dark-theme .sidebar-wrapper .metismenu a:hover {
  27. color: #fff;
  28. text-decoration: none;
  29. background: rgb(46 57 78);
  30. border-left: 4px solid #ffffff;
  31. }
  32. html.dark-theme .sidebar-wrapper .metismenu a {
  33. color: #9ea4aa;
  34. }
  35. html.dark-theme .sidebar-wrapper .metismenu ul {
  36. border: 1px solid #ffffff00;
  37. }
  38. html.dark-theme .sidebar-wrapper .sidebar-header img {
  39. filter: invert(1) grayscale(100%) brightness(200%);
  40. }
  41. html.dark-theme .sidebar-wrapper .simplebar-scrollbar:before {
  42. background: rgba(255, 255, 255, .4)
  43. }
  44. /* Header */
  45. html.dark-theme .top-header .navbar {
  46. color: #fcfcfc;
  47. background-color: #1a2232;
  48. border-bottom: 1px solid rgb(255 255 255 / 12%);
  49. }
  50. html.dark-theme .top-header .navbar .top-navbar-right .nav-link {
  51. color: #fcfcfc;
  52. }
  53. html.dark-theme .top-header .navbar .mobile-toggle-icon,
  54. html.dark-theme .top-header .navbar .search-toggle-icon {
  55. color: #fcfcfc;
  56. }
  57. html.dark-theme .top-header .navbar .searchbar .form-control {
  58. color: #fcfcfc;
  59. background-color: #202a40;
  60. border: 1px solid rgb(255 255 255 / 12%);
  61. }
  62. /* Components */
  63. html.dark-theme .btn-dark {
  64. color: #fff;
  65. background-color: #101821;
  66. border-color: #101821;
  67. }
  68. html.dark-theme .btn-outline-dark {
  69. color: #b1b6bb;
  70. border-color: #7f868d;
  71. }
  72. html.dark-theme .btn-white {
  73. color: #ffffff;
  74. background-color: #202a40;
  75. border-color: rgb(255 255 255 / 12%);
  76. }
  77. html.dark-theme .btn-light {
  78. color: #fff;
  79. background-color: #313c53;
  80. border-color: rgb(255 255 255 / 12%);
  81. }
  82. html.dark-theme .ff_fileupload_wrap .ff_fileupload_dropzone, html.dark-theme .imageuploadify {
  83. border: 2px dashed rgb(255 255 255 / 74%);
  84. background-color: #202a40;
  85. }
  86. html.dark-theme .picker__input {
  87. background-color: #1a2232 !important;
  88. }
  89. html.dark-theme .picker__holder {
  90. background: #1a2232;
  91. border: 1px solid rgb(255 255 255 / 12%);
  92. }
  93. html.dark-theme .picker__button--today, html.dark-theme .picker__button--clear, html.dark-theme .picker__button--close {
  94. border: 1px solid rgb(255 255 255 / 12%);
  95. background: #1a2232;
  96. }
  97. html.dark-theme .select2-container--bootstrap4 .select2-selection {
  98. background-color: #1a2232;
  99. border: 1px solid rgb(255 255 255 / .35)
  100. }
  101. html.dark-theme .select2-dropdown {
  102. background-color: #1a2232;
  103. border: 1px solid rgb(255 255 255 / 38%)
  104. }
  105. html.dark-theme .select2-search--dropdown .select2-search__field {
  106. border: 1px solid rgb(255 255 255 / 34%);
  107. background-color: #1a2232;
  108. color: #e3dfdf
  109. }
  110. html.dark-theme .select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice {
  111. color: #dee1e5;
  112. border: 1px solid rgb(255 255 255 / 55%);
  113. background: #171717
  114. }
  115. html.dark-theme .select2-container--bootstrap4 .select2-selection--multiple .select2-selection__rendered .select2-search__field {
  116. background: 0 0;
  117. color: #e6e1e1
  118. }
  119. html.dark-theme .select2-container--bootstrap4 .select2-dropdown .select2-results__option[aria-selected=true] {
  120. background-color: #1a2232;
  121. }
  122. html.dark-theme .modal-content {
  123. background-color: #202a40;
  124. }
  125. html.dark-theme .modal-header {
  126. border-bottom: 1px solid rgb(255 255 255 / 12%);
  127. }
  128. html.dark-theme .modal-footer {
  129. border-top: 1px solid rgb(255 255 255 / 12%);
  130. }
  131. html.dark-theme .nav-tabs .nav-item.show .nav-link, html.dark-theme .nav-tabs .nav-link.active {
  132. background-color: #1a2232;
  133. }
  134. html.dark-theme .nav-tabs {
  135. border-bottom: 1px solid rgb(255 255 255 / 12%);
  136. }
  137. html.dark-theme .nav-primary.nav-tabs .nav-link.active {
  138. border-color: #008cff #008cff rgb(255 255 255 / 24%);
  139. }
  140. html.dark-theme .nav-tabs .nav-link {
  141. color: #ffffff;
  142. }
  143. html.dark-theme .nav-danger.nav-tabs .nav-link.active {
  144. border-color: #f41127 #f41127 rgb(255 255 255 / 24%);
  145. }
  146. html.dark-theme .nav-success.nav-tabs .nav-link.active {
  147. border-color: #17a00e #17a00e rgb(255 255 255 / 24%);
  148. }
  149. html.dark-theme .nav-warning.nav-tabs .nav-link.active {
  150. border-color: #ffc107 #ffc107 rgb(255 255 255 / 24%);
  151. }
  152. html.dark-theme .nav-pills .nav-link {
  153. color: #ffffff;
  154. }
  155. html.dark-theme .page-link {
  156. color: #ffffff;
  157. background-color: #202a40;
  158. border: 1px solid rgb(255 255 255 / 12%);
  159. }
  160. html.dark-theme .page-item.disabled .page-link {
  161. color: #ffffff;
  162. background-color: #181f2e;
  163. border-color: rgb(255 255 255 / 12%);
  164. }
  165. html.dark-theme .productlist .product-box {
  166. border: 1px solid rgb(255 255 255 / 12%);
  167. background-color: #1a2232;
  168. }
  169. html.dark-theme .form-control, html.dark-theme .form-select {
  170. color: #fcfcfc;
  171. background-color: #1a2232;
  172. border: 1px solid rgb(255 255 255 / 12%);
  173. }
  174. html.dark-theme .form-control:disabled, html.dark-theme .form-control[readonly] {
  175. background-color: #2c364a;
  176. }
  177. html.dark-theme .form-select:disabled {
  178. background-color: #2c364a;
  179. }
  180. html.dark-theme .bootstrap-tagsinput {
  181. color: #fcfcfc;
  182. background-color: #1a2232;
  183. border: 1px solid rgb(255 255 255 / 12%);
  184. }
  185. html.dark-theme .input-group-text {
  186. color: #ffffff;
  187. background-color: #313c53;
  188. border: 1px solid rgb(255 255 255 / 12%);
  189. }
  190. html.dark-theme .chip {
  191. color: #ffffff;
  192. background-color: #141b29;
  193. }
  194. html.dark-theme .card {
  195. background-color: #202a40;
  196. }
  197. html.dark-theme .card-header,
  198. html.dark-theme .card-footer {
  199. background-color: #161d2d;
  200. }
  201. html.dark-theme .bg-dark{
  202. background-color: #101821!important;
  203. }
  204. html.dark-theme .text-secondary {
  205. color: #8c949c!important;
  206. }
  207. html.dark-theme .border {
  208. border: 1px solid rgb(255 255 255 / 12%) !important;
  209. }
  210. html.dark-theme .border-start {
  211. border-left: 1px solid rgb(255 255 255 / 12%) !important;
  212. }
  213. html.dark-theme .border-end {
  214. border-right: 1px solid rgb(255 255 255 / 12%) !important;
  215. }
  216. html.dark-theme .border-top {
  217. border-top: 1px solid rgb(255 255 255 / 12%) !important;
  218. }
  219. html.dark-theme .border-bottom {
  220. border-bottom: 1px solid rgb(255 255 255 / 12%) !important;
  221. }
  222. html.dark-theme .text-option {
  223. color: #fcfcfc!important;
  224. }
  225. html.dark-theme .offcanvas {
  226. background-color: #1a2232;
  227. }
  228. html.dark-theme .btn-close {
  229. filter: invert(1) grayscale(100%) brightness(200%);
  230. }
  231. html.dark-theme .w_percent {
  232. color: #ffffff;
  233. }
  234. html.dark-theme .bg-light {
  235. background-color: #1b2336!important;
  236. }
  237. html.dark-theme .list-group-item {
  238. color: #fcfcfc;
  239. background-color: #202a40;
  240. border: 1px solid rgb(255 255 255 / 12%);
  241. }
  242. html.dark-theme .list-group-flush>.list-group-item {
  243. border-width: 0 0 1px;
  244. }
  245. html.dark-theme .new-customer-list .customer-list-item:hover {
  246. background-color: #1b2436;
  247. }
  248. html.dark-theme .best-product-item {
  249. background-color: #202a40;
  250. }
  251. html.dark-theme .best-product-item:hover,
  252. html.dark-theme .sellers-list-item:hover {
  253. background-color: #1b2436;
  254. }
  255. html.dark-theme .theme-icons,
  256. html.dark-theme .product-box {
  257. background-color: #202a40;
  258. color: #f1f4f6;
  259. }
  260. html.dark-theme .accordion-button {
  261. color: #ffffff;
  262. background-color: #202a40;
  263. }
  264. html.dark-theme .accordion-item {
  265. background-color: #1b2436;
  266. border: 1px solid rgb(255 255 255 / 12%);
  267. }
  268. html.dark-theme .accordion-button:focus {
  269. border-color: #ffffff;
  270. box-shadow: 0 0 0 0.25rem rgb(255 255 255 / 25%);
  271. }
  272. html.dark-theme .accordion-button:not(.collapsed) {
  273. color: #ffffff;
  274. background-color: #161d2c;
  275. }
  276. html.dark-theme .dropdown-menu {
  277. color: #fcfcfc;
  278. background-color: #202a40;
  279. }
  280. html.dark-theme .dropdown-item {
  281. color: #fcfcfc;
  282. }
  283. html.dark-theme .top-header .navbar .dropdown-large .dropdown-menu::after,
  284. html.dark-theme .top-header .navbar .dropdown-user-setting .dropdown-menu::after {
  285. background: #202a40;
  286. border-top: 1px solid #2f3b55;
  287. border-left: 1px solid #2f3b55;
  288. }
  289. html.dark-theme .top-header .navbar .dropdown-searchbar .form-control {
  290. color: #fcfcfc;
  291. background-color: #202a40;
  292. }
  293. html.dark-theme .top-header .navbar .dropdown-item .setting-icon {
  294. background-color: #2b3650;
  295. }
  296. html.dark-theme .top-header .navbar .dropdown-large .dropdown-item:hover,
  297. html.dark-theme .top-header .navbar .dropdown-user-setting .dropdown-item:hover {
  298. border-radius: 10px;
  299. color: #fcfcfc;
  300. background-color: #2e384e
  301. }
  302. html.dark-theme .top-header .navbar .dropdown-menu .notification-box {
  303. background-color: #2e384e;
  304. }
  305. html.dark-theme .top-header .navbar .dropdown-menu .apps:hover {
  306. background-color: #2e384e;
  307. transition: all 0.2;
  308. }
  309. html.dark-theme .top-header .navbar .dropdown-menu .apps .apps-name {
  310. color: #fcfcfc;
  311. }
  312. html.dark-theme .table {
  313. --bs-table-bg: transparent;
  314. --bs-table-accent-bg: transparent;
  315. --bs-table-striped-color: #ffffff;
  316. --bs-table-striped-bg: rgba(255, 255, 255, 0.05);
  317. --bs-table-active-color: #ffffff;
  318. --bs-table-active-bg: rgb(255 255 255 / 10%);
  319. --bs-table-hover-color: #ffffff;
  320. --bs-table-hover-bg: rgb(255 255 255 / 8%);
  321. width: 100%;
  322. margin-bottom: 1rem;
  323. color: #fcfcfc;
  324. vertical-align: top;
  325. border-color: rgb(255 255 255 / 12%);
  326. }
  327. html.dark-theme .table-light {
  328. --bs-table-bg: rgb(255 255 255 / 12%);
  329. --bs-table-striped-bg: #ecedee;
  330. --bs-table-striped-color: #000;
  331. --bs-table-active-bg: #dfe0e1;
  332. --bs-table-active-color: #000;
  333. --bs-table-hover-bg: #e5e6e7;
  334. --bs-table-hover-color: #000;
  335. color: #fff;
  336. border-color: #dfe0e1;
  337. }
  338. /* Emailbox */
  339. html.dark-theme .email-wrapper {
  340. background-color: #202a40;
  341. box-shadow: 0 .1rem .7rem rgb(0 0 0 / 24%)
  342. }
  343. html.dark-theme .email-sidebar {
  344. background-color: #202a40;
  345. border-right: 1px solid rgb(255 255 255 / .12)
  346. }
  347. html.dark-theme .email-sidebar-header {
  348. background-color: #202a40;
  349. border-bottom: 1px solid rgb(255 255 255 / .12);
  350. border-right: 0 solid rgb(255 255 255 / 12%)
  351. }
  352. html.dark-theme .email-navigation {
  353. border-bottom: 1px solid rgb(255 255 255 / 13%)
  354. }
  355. html.dark-theme .email-navigation a.list-group-item {
  356. color: #e4e5e6;
  357. background-color: #202a40;
  358. border-bottom: 1px solid rgb(0 0 0 / 0%)
  359. }
  360. html.dark-theme .email-navigation a.list-group-item:hover {
  361. background-color: rgb(255 255 255 / 14%);
  362. }
  363. html.dark-theme .email-meeting a.list-group-item {
  364. color: #e4e5e6;
  365. background-color: #202a40;
  366. border-bottom: 1px solid rgb(0 0 0 / 0%)
  367. }
  368. html.dark-theme .email-meeting a.list-group-item:hover {
  369. background-color: rgb(255 255 255 / 14%);
  370. }
  371. html.dark-theme .list-group-item {
  372. background-color: #202a40;
  373. border: 1px solid rgb(255 255 255 / 13%)
  374. }
  375. html.dark-theme .email-navigation a.list-group-item.active {
  376. color: #ffffff;
  377. font-weight: 600;
  378. background-color: rgb(255 255 255 / 14%);
  379. }
  380. html.dark-theme .list-group-flush>.list-group-item {
  381. border-width: 0 0 1px
  382. }
  383. html.dark-theme .border-top {
  384. border-top: 1px solid rgb(255 255 255 / 13%)!important
  385. }
  386. html.dark-theme .email-header {
  387. background-color: #202a40;
  388. border-bottom: 1px solid rgb(255 255 255 / 13%)
  389. }
  390. html.dark-theme .email-content {
  391. background: #202a40
  392. }
  393. html.dark-theme .email-list div.email-message {
  394. background-color: #202a40;
  395. border-bottom: 1px solid rgb(255 255 255 / 12%);
  396. color: #e4e5e6
  397. }
  398. html.dark-theme .email-list div.email-message:hover {
  399. transition: all .2s ease-out;
  400. background: #434a50
  401. }
  402. html.dark-theme .email-time {
  403. font-size: 13px;
  404. color: #8c969e
  405. }
  406. /* Chatbox */
  407. html.dark-theme .chat-wrapper {
  408. background-color: #202a40;
  409. box-shadow: 0 .1rem .7rem rgb(0 0 0 / 22%)
  410. }
  411. html.dark-theme .chat-sidebar {
  412. background-color: #202a40;
  413. border-right: 1px solid rgb(255 255 255 / 13%)
  414. }
  415. html.dark-theme .chat-sidebar-header {
  416. background-color: #202a40;
  417. border-bottom: 1px solid rgb(255 255 255 / 13%);
  418. border-right: 0 solid rgb(255 255 255 / 13%)
  419. }
  420. html.dark-theme .chat-header {
  421. background-color: #202a40;
  422. border-bottom: 1px solid rgb(255 255 255 / 13%)
  423. }
  424. html.dark-theme .chat-tab-menu li a.nav-link {
  425. color: #c3c5c8
  426. }
  427. html.dark-theme .chat-title {
  428. color: #e4e5e6
  429. }
  430. html.dark-theme .chat-msg {
  431. font-size: 14px;
  432. color: #848992
  433. }
  434. html.dark-theme .chat-time {
  435. font-size: 13px;
  436. color: #8c969e
  437. }
  438. html.dark-theme .chat-top-header-menu a {
  439. color: #c3c5c8;
  440. background-color: #202a40;
  441. border: 1px solid rgb(255 255 255 / 15%)
  442. }
  443. html.dark-theme .chat-content-leftside .chat-left-msg {
  444. background-color: #202a40
  445. }
  446. html.dark-theme .chat-content-rightside .chat-right-msg {
  447. background-color: #41484e
  448. }
  449. html.dark-theme .chat-footer {
  450. background-color: #202a40;
  451. border-top: 1px solid rgb(255 255 255 / 13%)
  452. }
  453. html.dark-theme .chat-footer-menu a {
  454. color: #c3c5c8;
  455. background-color: #202a40;
  456. border: 1px solid rgb(255 255 255 / 15%)
  457. }
  458. html.dark-theme .fm-menu .list-group a {
  459. color: #c3c5c8
  460. }
  461. html.dark-theme .fm-icon-box {
  462. background: #202a40;
  463. color: #fff
  464. }
  465. html.dark-theme .contacts-social a {
  466. background: #202a40;
  467. color: #fff
  468. }
  469. html.dark-theme .fc-theme-standard td, html.dark-theme .fc-theme-standard th {
  470. border: 1px solid rgb(255 255 255 / .12)
  471. }
  472. html.dark-theme .fc-theme-standard .fc-scrollgrid {
  473. border: 1px solid rgb(255 255 255 / 12%)
  474. }
  475. html.dark-theme .fc .fc-col-header-cell-cushion {
  476. color: #fff
  477. }
  478. html.dark-theme .fc .fc-daygrid-day-number {
  479. color: #fff
  480. }
  481. html.dark-theme .breadcrumb {
  482. background-color: rgb(32 42 64 / 0%);
  483. }
  484. html.dark-theme .breadcrumb-item.active {
  485. color: #8b969f
  486. }
  487. html.dark-theme .breadcrumb-title {
  488. border-right: 1.5px solid rgb(255 255 255 / 18%)
  489. }
  490. html.dark-theme .bg-body {
  491. background-color: #202a40!important
  492. }
  493. html.dark-theme .apexcharts-pie-label,
  494. html.dark-theme .apexcharts-datalabels,
  495. html.dark-theme .apexcharts-datalabel,
  496. html.dark-theme .apexcharts-datalabel-label,
  497. html.dark-theme .apexcharts-datalabel-value {
  498. fill: #fff;
  499. }
  500. html.dark-theme .apexcharts-text tspan {
  501. fill: rgb(255 255 255 / 66%);
  502. }
  503. /* Responsive */
  504. @media screen and (max-width:1024px) {
  505. html.dark-theme .top-header .navbar .full-searchbar {
  506. background-color: #1a2232;
  507. border-bottom: 1px solid rgb(255 255 255 / 15%);
  508. background-clip: border-box;
  509. }
  510. }