dark-theme.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. .root {
  2. -fx-accent: #1e74c6;
  3. -fx-focus-color: -fx-accent;
  4. -fx-base: #373e43;
  5. -fx-control-inner-background: derive(-fx-base, 35%);
  6. -fx-control-inner-background-alt: -fx-control-inner-background ;
  7. }
  8. .label{
  9. -fx-text-fill: lightgray;
  10. }
  11. .text-field {
  12. -fx-prompt-text-fill: gray;
  13. }
  14. .titulo{
  15. -fx-font-weight: bold;
  16. -fx-font-size: 18px;
  17. }
  18. .button{
  19. -fx-focus-traversable: false;
  20. }
  21. .button:hover{
  22. -fx-text-fill: white;
  23. }
  24. .separator *.line {
  25. -fx-background-color: #3C3C3C;
  26. -fx-border-style: solid;
  27. -fx-border-width: 1px;
  28. }
  29. .scroll-bar{
  30. -fx-background-color: derive(-fx-base,45%)
  31. }
  32. .button:default {
  33. -fx-base: -fx-accent ;
  34. }
  35. .table-view{
  36. /*-fx-background-color: derive(-fx-base, 10%);*/
  37. -fx-selection-bar-non-focused: derive(-fx-base, 50%);
  38. }
  39. .table-view .column-header .label{
  40. -fx-alignment: CENTER_LEFT;
  41. -fx-font-weight: none;
  42. }
  43. .list-cell:even,
  44. .list-cell:odd,
  45. .table-row-cell:even,
  46. .table-row-cell:odd{
  47. -fx-control-inner-background: derive(-fx-base, 15%);
  48. }
  49. .list-cell:empty,
  50. .table-row-cell:empty {
  51. -fx-background-color: transparent;
  52. }
  53. .list-cell,
  54. .table-row-cell{
  55. -fx-border-color: transparent;
  56. -fx-table-cell-border-color:transparent;
  57. }