1
0

dark-theme.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784
  1. /* Main */
  2. body {
  3. background-color: #1d1f21 !important;
  4. color: #e0e0e0;
  5. }
  6. body:not(.full-width) {
  7. background-color: #1d1f21 !important;
  8. }
  9. footer {
  10. background-color: #282a2e;
  11. color: #e0e0e0;
  12. border-top: 1px solid #373b41;
  13. margin-top: 0 !important;
  14. }
  15. footer .container .fa {
  16. color: #81a2be;
  17. }
  18. a {
  19. color: #81a2be;
  20. }
  21. a:hover {
  22. color: #81a2be;
  23. opacity: 0.6;
  24. }
  25. hr {
  26. background-color: #e0e0e0 !important;
  27. }
  28. .full.height {
  29. padding-top: 53px;
  30. margin: 0 0 -40px 0;
  31. }
  32. .following.bar.light {
  33. position: fixed;
  34. top: 0px;
  35. }
  36. .ui.attached.header .right .button {
  37. color: white !important;
  38. }
  39. .ui.top.attached.header {
  40. background: #2f3233 !important;
  41. color: #e7e7e7 !important;
  42. border-color: #353636 !important;
  43. }
  44. .ui.table thead th {
  45. background: #2f3233 !important;
  46. color: #e7e7e7 !important;
  47. border-color: #353636 !important;
  48. }
  49. .three.wide.text.grey.right.age,
  50. .time-since.poping.up {
  51. color: #e7e7e7 !important;
  52. }
  53. .ui.dropdown .menu {
  54. background: #333131 !important;
  55. }
  56. /* Navigation */
  57. .ui.menu .ui.dropdown .menu > .item {
  58. color: rgba(255, 255, 255, 0.9) !important;
  59. }
  60. .following.bar.light {
  61. background-color: #282a2e;
  62. border-bottom: 1px solid #373b41;
  63. }
  64. .ui.secondary.menu .active.item {
  65. color: #e0e0e0;
  66. background-color: #1d1f21;
  67. font-weight: bold;
  68. }
  69. .ui.secondary.menu .active.item:hover {
  70. background-color: #1d1f21 !important;
  71. }
  72. .ui.menu .item {
  73. color: #e0e0e0;
  74. }
  75. .ui.menu {
  76. background: #282a2e;
  77. border: none;
  78. }
  79. .repository .milestone.list > .item > a {
  80. color: white;
  81. }
  82. .issue.list > .item .desc a.milestone:hover {
  83. color: white !important;
  84. }
  85. .repository .metas .ui.list a .text {
  86. color: white;
  87. }
  88. h1 a.anchor .octicon.octicon-link,
  89. h2 a.anchor .octicon.octicon-link,
  90. h3 a.anchor .octicon.octicon-link,
  91. h4 a.anchor .octicon.octicon-link,
  92. h5 a.anchor .octicon.octicon-link,
  93. h6 a.anchor .octicon.octicon-link {
  94. color: white;
  95. }
  96. .following.bar .top.menu a.item:hover {
  97. color: #b4b7b4;
  98. }
  99. .ui .text.black {
  100. color: #e0e0e0;
  101. }
  102. .context.user.overflow.menu.transition {
  103. background-color: #343544;
  104. color: lightgrey !important;
  105. }
  106. .ui.dropdown .menu > .header {
  107. color: rgba(255, 255, 255, 0.9);
  108. }
  109. .overflow.menu .items .item:hover {
  110. color: rgba(255, 255, 255, 0.9);
  111. }
  112. .overflow.menu .items .item {
  113. color: rgba(255, 255, 255, 0.9) !important;
  114. }
  115. .ui.dropdown .menu > .item {
  116. color: white !important;
  117. }
  118. .repository .filter.dropdown .menu {
  119. background-color: #2e2f38 !important;
  120. color: lightgrey !important;
  121. }
  122. .ui.menu .ui.dropdown .menu > .active.item {
  123. color: rgb(73, 95, 140) !important;
  124. }
  125. .ui.icon.input > input {
  126. background-color: #3e3e3e !important;
  127. border: none !important;
  128. color: lightgrey;
  129. }
  130. .reference.column .text.black {
  131. color: white !important;
  132. }
  133. .ui.menu .ui.dropdown .menu > .item:hover,
  134. .ui.menu .ui.dropdown .menu > .selected.item,
  135. #branch-list {
  136. background-color: #343544 !important;
  137. color: white !important;
  138. }
  139. .filter.icon {
  140. color: white;
  141. }
  142. /* Home */
  143. .home a {
  144. color: #cc6666;
  145. }
  146. .home .logo img {
  147. height: 294px;
  148. }
  149. .home .hero .octicon {
  150. color: #cc6666;
  151. }
  152. .ui.header {
  153. color: #e0e0e0;
  154. }
  155. .feeds .list ul li.private {
  156. background-color: #373b41;
  157. border-bottom: none;
  158. }
  159. .feeds .list ul li:not(:last-child) {
  160. border-bottom: 1px solid #373b41;
  161. }
  162. .ui.accordion .title:not(.ui) {
  163. color: #e0e0e0;
  164. }
  165. #auth_password {
  166. background: #373b41;
  167. color: #e0e0e0;
  168. }
  169. .ui.checkbox label:hover,
  170. .ui.checkbox + label:hover {
  171. color: #e0e0e0;
  172. opacity: 0.6;
  173. }
  174. .ui.secondary.menu .dropdown.item:hover,
  175. .ui.secondary.menu .link.item:hover,
  176. .ui.secondary.menu a.item:hover {
  177. color: rgba(224, 224, 224, 0.6);
  178. }
  179. /* Explore */
  180. .ui.vertical.menu {
  181. background-color: #373b41;
  182. }
  183. .ui.vertical.menu .header.item {
  184. background-color: #373b41;
  185. }
  186. .ui.vertical.menu .active.item {
  187. background-color: #282a2e;
  188. }
  189. .ui.menu .active.item {
  190. color: #e0e0e0;
  191. background: #373b41;
  192. }
  193. .ui.menu a.item:hover {
  194. color: #fff;
  195. background-color: #282a2e;
  196. }
  197. .ui.repository.list .item:not(:first-child) {
  198. border-top: 1px solid #373b41;
  199. }
  200. .ui.menu .active.item:hover,
  201. .ui.vertical.menu .active.item:hover {
  202. background-color: #282a2e;
  203. color: #e0e0e0;
  204. }
  205. .ui.form input:not([type]),
  206. .ui.form input:not([type]):focus {
  207. background-color: #373b41;
  208. color: #b4b7b4;
  209. }
  210. .ui.form input:not([type]):focus {
  211. border-top-color: #81a2be;
  212. border-left-color: #81a2be;
  213. border-bottom-color: #81a2be;
  214. color: #e0e0e0;
  215. }
  216. .ui.list .list > .item .description,
  217. .ui.list > .item .description {
  218. color: #969896;
  219. }
  220. .ui.repository.list .item .time {
  221. color: #969896;
  222. }
  223. .ui .text.grey {
  224. color: #969896 !important;
  225. }
  226. .ui.user.list .item:not(:first-child) {
  227. border-top: 1px solid #373b41;
  228. }
  229. .ui.divider:not(.vertical):not(.horizontal) {
  230. border-bottom: 1px solid #373b41;
  231. }
  232. .ui.list .list > .item .header,
  233. .ui.list > .item .header {
  234. color: #e0e0e0;
  235. }
  236. .ui.pagination.menu .active.item {
  237. color: #e0e0e0;
  238. background-color: #373b41;
  239. }
  240. .ui.menu .item.disabled,
  241. .ui.menu:hover .item.disabled:hover {
  242. color: #e0e0e0;
  243. }
  244. .ui.menu:hover .item.disabled:hover {
  245. background-color: #282a2e !important;
  246. }
  247. .ui.user.list .item .description a {
  248. color: #81a2be !important;
  249. }
  250. .ui.sha.label,
  251. a.ui.label:hover,
  252. a.ui.labels .label:hover {
  253. background-color: #454557;
  254. color: #d7d7d7;
  255. }
  256. .ui.breadcrumb a.section {
  257. display: none;
  258. }
  259. #search-repo-box .results .item:hover,
  260. #search-user-box .results .item:hover {
  261. color: rgb(152, 165, 201) !important;
  262. }
  263. /* Repos */
  264. .repository .header-wrapper {
  265. background-color: #282a2e;
  266. }
  267. .ui.basic.button,
  268. .ui.basic.buttons .button {
  269. color: #e0e0e0 !important;
  270. }
  271. .ui.basic.label {
  272. color: #e0e0e0;
  273. }
  274. .ui.tabular.menu .item {
  275. color: #e0e0e0;
  276. }
  277. .ui.tabular.menu .active.item {
  278. background: none #373b41;
  279. color: #e0e0e0;
  280. border-color: transparent;
  281. }
  282. .ui .text.black {
  283. color: #e0e0e0;
  284. }
  285. .ui .text.black:hover {
  286. color: #e0e0e0;
  287. }
  288. .ui.segment {
  289. background: #282a2e;
  290. }
  291. .ui.input input {
  292. background: #373b41 !important;
  293. color: #e0e0e0 !important;
  294. border: none !important;
  295. }
  296. .ui.input input:focus {
  297. background: #373b41 !important;
  298. color: #e0e0e0 !important;
  299. }
  300. .ui.black.button,
  301. .ui.black.buttons .button {
  302. background: #373b41 !important;
  303. color: #e0e0e0 !important;
  304. }
  305. .ui.basic.button:hover,
  306. .ui.basic.buttons .button:hover {
  307. background: #e0e0e0 !important;
  308. }
  309. .ui.basic.label {
  310. background: none #e0e0e0;
  311. }
  312. span.ui.basic.yellow.label {
  313. background-color: transparent !important;
  314. }
  315. .ui.dropdown .menu {
  316. background: #e0e0e0;
  317. }
  318. .reference.column .text.black {
  319. color: #1d1f21;
  320. }
  321. .ui.table {
  322. background: #282a2e;
  323. color: #e0e0e0;
  324. }
  325. .ui.table thead th {
  326. background: #e0e0e0;
  327. color: #1d1f21;
  328. }
  329. .repository.file.list #repo-files-table tr:hover {
  330. background-color: #373b41;
  331. }
  332. .repository.file.list #file-content .code-view .lines-code ol {
  333. background-color: #282a2e;
  334. }
  335. .ui.breadcrumb a {
  336. color: #81a2be;
  337. }
  338. .ui.breadcrumb a:hover {
  339. color: #81a2be;
  340. opacity: 0.6;
  341. }
  342. .ui.basic.blue.button,
  343. .ui.basic.blue.buttons .button {
  344. color: #81a2be !important;
  345. box-shadow: 0 0 0 1px #81a2be inset !important;
  346. }
  347. .ui.basic.blue.button:hover,
  348. .ui.basic.blue.buttons .button:hover {
  349. color: #81a2be !important;
  350. opacity: 0.6;
  351. }
  352. .ui.basic.orange.label {
  353. color: #f2711c !important;
  354. border-color: #f2711c !important;
  355. background: none !important;
  356. }
  357. .ui .text.grey a:hover {
  358. color: #fff !important;
  359. }
  360. .ui .text.grey a {
  361. color: #fff !important;
  362. }
  363. .ui.button {
  364. background-color: #0000001a;
  365. color: #999;
  366. }
  367. .ui.form textarea,
  368. .repository.file.editor
  369. .commit-form-wrapper
  370. .commit-form
  371. .quick-pull-choice
  372. .new-branch-name-input
  373. input {
  374. background-color: #373b41 !important;
  375. color: #b4b7b4 !important;
  376. }
  377. .ui.menu .item > .label {
  378. color: #1d1f21;
  379. }
  380. .ui.tabular.menu .item:hover {
  381. color: #e0e0e0;
  382. opacity: 0.6;
  383. }
  384. .ui.breadcrumb .divider {
  385. color: #e0e0e0;
  386. }
  387. .three.wide.text.grey.right.age .time-since.poping.up {
  388. color: #1d1f21;
  389. }
  390. .ui.attached.header {
  391. background: #e0e0e0;
  392. }
  393. .ui.top.attached.header {
  394. background: #e0e0e0;
  395. color: #282a2e;
  396. }
  397. .ui .warning.header {
  398. background-color: #de935f !important;
  399. border-color: #de935f !important;
  400. }
  401. .ui.attached.table {
  402. border: transparent;
  403. }
  404. .markdown:not(code) .highlight pre,
  405. .markdown:not(code) pre {
  406. background-color: #1d1f21;
  407. }
  408. .hljs {
  409. color: #e0e0e0 !important;
  410. }
  411. .hljs-built_in,
  412. .hljs-builtin-name {
  413. color: #81a2be !important;
  414. }
  415. .hljs-comment,
  416. .hljs-quote {
  417. color: #969896 !important;
  418. opacity: 0.7;
  419. }
  420. .hljs-keyword,
  421. .hljs-selector-tag,
  422. .hljs-subst {
  423. color: #e0e0e0 !important;
  424. }
  425. .hljs-tag,
  426. .hljs-name,
  427. .hljs-attribute {
  428. color: #81a2be !important;
  429. }
  430. .hljs-number,
  431. .hljs-literal,
  432. .hljs-variable,
  433. .hljs-template-variable,
  434. .hljs-tag .hljs-attr {
  435. color: #a3e5ff !important;
  436. }
  437. .hljs-string,
  438. .hljs-doctag {
  439. color: #cc6666 !important;
  440. }
  441. .markdown:not(code) h1,
  442. .markdown:not(code) h2,
  443. .markdown:not(code) h3,
  444. .markdown:not(code) h4,
  445. .markdown:not(code) h5,
  446. .markdown:not(code) h6 {
  447. border-bottom: 1px solid rgba(224, 224, 224, 0.6);
  448. }
  449. .ui.basic.small.button {
  450. background: #282a2e !important;
  451. }
  452. .linenums > li {
  453. background-color: #282a2e;
  454. }
  455. .lines-num > span {
  456. background: #373b41;
  457. }
  458. .ui.blue.button:hover,
  459. .ui.blue.buttons .button:hover {
  460. background-color: #81a2be;
  461. opacity: 0.6;
  462. }
  463. .repository .diff-file-box .code-diff tbody tr.add-code td {
  464. background-color: rgba(181, 189, 104, 0.1) !important;
  465. }
  466. .ui .info.segment.top {
  467. background-color: #282a2e !important;
  468. }
  469. .tag-code.nl-0.ol-0 > .lines-code > pre > code {
  470. color: #1d1f21 !important;
  471. }
  472. .repository .diff-file-box .code-diff tbody tr.tag-code td,
  473. .tag-code {
  474. background-color: #454545 !important;
  475. }
  476. .repository .diff-file-box .code-diff tbody tr .removed-code {
  477. background-color: #723b3b;
  478. color: white;
  479. }
  480. .repository .diff-file-box .code-diff tbody tr .added-code {
  481. background-color: #148414;
  482. color: white;
  483. }
  484. .hljs-title,
  485. .hljs-section,
  486. .hljs-selector-id {
  487. color: #cc6666 !important;
  488. }
  489. .ui.checkbox label,
  490. .ui.checkbox + label {
  491. color: #e0e0e0;
  492. }
  493. .ui.checkbox input:focus ~ label {
  494. color: #e0e0e0 !important;
  495. }
  496. .ui.red.button,
  497. .ui.red.buttons .button {
  498. background-color: #cc6666;
  499. }
  500. .ui.green.button:hover,
  501. .ui.green.buttons .button:hover {
  502. background-color: #cc6666;
  503. opacity: 0.6;
  504. }
  505. .ui.blue.button,
  506. .ui.blue.buttons .button {
  507. background-color: #306796 !important;
  508. }
  509. #repo-clone-https,
  510. #repo-clone-https:hover {
  511. box-shadow: 0 0 0 1px #3c3c3c inset !important;
  512. background-color: #333 !important;
  513. color: white !important;
  514. }
  515. .ui.basic.label {
  516. background-color: #43434e !important;
  517. border-color: #383838;
  518. }
  519. .ui.basic.button {
  520. background-color: #32333b !important;
  521. }
  522. .repository .diff-file-box .code-diff tbody tr.del-code td {
  523. background-color: rgba(204, 102, 102, 0.1) !important;
  524. }
  525. .repository .diff-file-box .code-diff tbody tr.del-code td.add-code {
  526. background-color: rgba(204, 102, 102, 0.1) !important;
  527. }
  528. .repository .diff-file-box .code-diff tbody tr.del-code td.add-code pre {
  529. background-color: rgba(204, 102, 102, 0.1) !important;
  530. }
  531. .ui.secondary.pointing.menu a.item:hover {
  532. background-color: #282a2e;
  533. color: #e0e0e0 !important;
  534. }
  535. .markdown:not(code) table tr {
  536. background-color: #1d1f21;
  537. }
  538. .markdown:not(code) table tr:nth-child(2n) {
  539. background-color: #373b41;
  540. }
  541. .markdown:not(code) table th,
  542. .markdown:not(code) table td {
  543. border: none !important;
  544. }
  545. .markdown:not(code) blockquote {
  546. color: #b4b7b4 !important;
  547. border-left: 4px solid #5a5a5a;
  548. background-color: #5454541a;
  549. }
  550. .markdown:not(code) code,
  551. .markdown:not(code) tt {
  552. background-color: #373b41;
  553. }
  554. /* Issues */
  555. .issues .ui.vertical.filter.menu {
  556. background-color: rgba(0, 0, 0, 0);
  557. }
  558. .ui.basic.green.active.button,
  559. .ui.basic.green.buttons .active.button {
  560. box-shadow: 0 0 0 1px #b5bd68 inset !important;
  561. color: #b5bd68 !important;
  562. }
  563. .ui.basic.button:hover,
  564. .ui.basic.buttons .button:hover {
  565. background: #282a2e !important;
  566. color: #e0e0e0 !important;
  567. }
  568. .ui.basic.red.active.button,
  569. .ui.basic.red.buttons .active.button {
  570. box-shadow: 0 0 0 1px #cc6666 inset !important;
  571. color: #cc6666 !important;
  572. }
  573. .ui.compact.small.menu {
  574. background: #282a2e !important;
  575. }
  576. .issue.list > .item .title {
  577. color: #e0e0e0;
  578. }
  579. .ui.black.label,
  580. .ui.black.labels .label {
  581. color: #e0e0e0;
  582. background-color: #282a2e !important;
  583. }
  584. .issue.list > .item .desc {
  585. color: #e0e0e0;
  586. opacity: 0.6;
  587. }
  588. .issue.list > .item .title:hover {
  589. color: #e0e0e0;
  590. opacity: 0.6;
  591. }
  592. .repository.view.issue .comment-list .comment .content .header {
  593. background-color: #e0e0e0;
  594. }
  595. .ui .text.grey a {
  596. color: #b4b4b4 !important;
  597. }
  598. .ui.attached.segment {
  599. border: transparent;
  600. }
  601. .ui.warning.message {
  602. background-color: #e0e0e0;
  603. }
  604. .ui.green.label,
  605. .ui.green.labels .label {
  606. background-color: #b5bd68 !important;
  607. border-color: #b5bd68 !important;
  608. color: #e0e0e0 !important;
  609. }
  610. .ui.green.button,
  611. .ui.green.buttons .button {
  612. background-color: #649e36 !important;
  613. color: #e0e0e0 !important;
  614. }
  615. .ui.basic.red.button,
  616. .ui.basic.red.buttons .button {
  617. color: #cc6666 !important;
  618. box-shadow: 0 0 0 1px #cc6666 inset !important;
  619. }
  620. .ui.basic.green.button,
  621. .ui.basic.green.buttons .button {
  622. color: #e0e0e0 !important;
  623. box-shadow: none !important;
  624. }
  625. .ui.red.label,
  626. .ui.red.labels .label {
  627. background-color: #cc6666 !important;
  628. border-color: inherit !important;
  629. }
  630. .ui.form textarea {
  631. background: #e0e0e0;
  632. }
  633. .ui.basic.green.button:hover,
  634. .ui.basic.green.buttons .button:hover {
  635. box-shadow: 0 0 0 1px #b5bd68 inset !important;
  636. color: #b5bd68 !important;
  637. }
  638. /* Pull requests */
  639. .ui.header .sub.header {
  640. color: #e0e0e0 !important;
  641. }
  642. .editor-toolbar a {
  643. color: #81a2be !important;
  644. }
  645. /* Wiki */
  646. .repository.wiki.view .markdown {
  647. background: #282a2e;
  648. padding: 25px;
  649. border-radius: 15px;
  650. }
  651. /* Profile drop down */
  652. .ui.menu .dropdown.item .menu {
  653. background: #e0e0e0;
  654. }
  655. .ui.menu .ui.dropdown .menu > .item:hover,
  656. .ui.menu .ui.dropdown .menu > .selected.item {
  657. background: #b4b7b4;
  658. opacity: 0.6;
  659. }
  660. /* Profile */
  661. .ui.card,
  662. .ui.cards > .card {
  663. background: #282a2e;
  664. box-shadow: none;
  665. }
  666. .ui.card > .extra a:not(.ui),
  667. .ui.cards > .card > .extra a:not(.ui) {
  668. color: #81a2be;
  669. }
  670. .ui.card > .extra,
  671. .ui.cards > .card > .extra {
  672. border-top: 1px solid #373b41 !important;
  673. }
  674. .user.profile .ui.card .extra.content ul li:not(:last-child) {
  675. border-bottom: 1px solid #373b41 !important;
  676. }
  677. .ui.secondary.pointing.menu .active.item {
  678. color: #e0e0e0;
  679. border-color: #e0e0e0;
  680. }
  681. .ui.secondary.pointing.menu .active.item:hover {
  682. border-color: #e0e0e0;
  683. }
  684. .user.profile .ui.card .header.text {
  685. color: #e0e0e0;
  686. }
  687. /* Settings */
  688. .ui.form .field > label {
  689. color: #e0e0e0;
  690. }
  691. #website {
  692. background: #373b41;
  693. color: #e0e0e0;
  694. }
  695. .inline.box.field > label {
  696. color: #e0e0e0 !important;
  697. }
  698. .inline.box.field > input {
  699. background: #373b41;
  700. color: #e0e0e0;
  701. }
  702. #old_password,
  703. #password,
  704. #retype,
  705. #email,
  706. #description {
  707. background: #373b41;
  708. color: #e0e0e0;
  709. }
  710. label[for="org_name"] {
  711. color: #e0e0e0 !important;
  712. }
  713. .ui.red.message {
  714. color: #cc6666;
  715. }
  716. .ui.very.basic.striped.table > thead > tr > th {
  717. color: #e0e0e0;
  718. }
  719. .ui.form .inline.field > label,
  720. .ui.form .inline.field > p,
  721. .ui.form .inline.fields .field > label,
  722. .ui.form .inline.fields .field > p,
  723. .ui.form .inline.fields > label {
  724. color: #e0e0e0;
  725. }
  726. .ui.very.basic.select.selectable.table > thead > tr > th {
  727. color: #e0e0e0;
  728. }
  729. .ui.teal.button,
  730. .ui.teal.buttons .button {
  731. background-color: #8abeb7;
  732. }
  733. .ui.form input[type="file"],
  734. .ui.form input[type="number"],
  735. .ui.form input[type="url"],
  736. .ui.form input[type="password"] {
  737. color: #e0e0e0;
  738. background: #373b41;
  739. }
  740. .ui.selection.dropdown {
  741. color: #e0e0e0;
  742. background: #373b41;
  743. }
  744. .organization.members .list .item {
  745. border-bottom: 1px solid #373b41 !important;
  746. }
  747. .settings .hook.list > .item:not(:first-child) {
  748. border-top: 1px solid #373b41 !important;
  749. }
  750. .settings .key.list .item:not(:first-child) {
  751. border-top: 1px solid #373b41 !important;
  752. }
  753. /* Commit */
  754. .repository .diff-box .file {
  755. color: #969896;
  756. }
  757. .ui.blue.button,
  758. .ui.blue.buttons .button {
  759. background-color: #81a2be;
  760. color: #e0e0e0 !important;
  761. }
  762. .ui.basic.grey.button,
  763. .ui.basic.grey.buttons .button {
  764. color: #282a2e !important;
  765. }
  766. .added-code {
  767. color: #fff;
  768. background-color: #b5bd68;
  769. }
  770. .removed-code {
  771. color: #1d1f21;
  772. background-color: #cc6666;
  773. }
  774. .ui.blue.label,
  775. .ui.blue.labels .label {
  776. background-color: #81a2be !important;
  777. color: #e0e0e0 !important;
  778. }
  779. .repository .diff-file-box .file-body.file-code .lines-num {
  780. background: none;
  781. }
  782. .hljs-meta {
  783. color: #959595 !important;
  784. }