definitions.less 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /*
  2. * searx, A privacy-respecting, hackable metasearch engine
  3. *
  4. * To change the colors of the site, simple edit this variables
  5. */
  6. /// Basic Colors
  7. @color-base: #3498DB;
  8. @color-base-dark: #2980B9;
  9. @color-base-light: #ECF0F1;
  10. /// General
  11. @color-font: #444;
  12. @color-url-font: #1a11be;
  13. @color-url-visited-font: #8E44AD;
  14. /// Start-Screen
  15. // hmarg
  16. @color-hmarg-border: @color-base;
  17. @color-hmarg-font: @color-base;
  18. @color-hmarg-font-hover: @color-base;
  19. /// Search-Input
  20. @color-search-border: @color-base;
  21. @color-search-background: #FFF;
  22. @color-search-font: #222;
  23. /// Categories
  24. @color-categories-item-selected: @color-base;
  25. @color-categories-item-selected-font: #FFF;
  26. @color-categories-item-border-selected: @color-base-dark;
  27. @color-categories-item-border-unselected: #E8E7E6;
  28. @color-categories-item-border-unselected-hover: @color-base;
  29. /// Results
  30. @color-suggestions-button-background: @color-base;
  31. @color-suggestions-button-font: #FFF;
  32. @color-download-button-background: @color-base;
  33. @color-download-button-font: #FFF;
  34. @color-result-search-background: @color-base-light;
  35. @color-result-definition-border: gray;
  36. @color-result-torrent-border: lightgray;
  37. @color-result-top-border: #E8E7E6;
  38. // Link to result
  39. @color-result-link-font: @color-base-dark;
  40. @color-result-link-visited-font: @color-url-visited-font;
  41. // Url to result
  42. @color-result-url-font: #C0392B;
  43. // Publish Date
  44. @color-result-publishdate-font: #888;
  45. // Images
  46. @color-result-image-span-background-hover: rgba(0, 0, 0, 0.6);
  47. @color-result-image-span-font: #FFF;
  48. // Search-URL
  49. @color-result-search-url-border: #888;
  50. @color-result-search-url-font: #444;
  51. /// Settings
  52. @color-settings-fieldset: @color-base;
  53. @color-settings-tr-hover: #DDD;
  54. // Labels
  55. @color-settings-label-allowed-background: #E74C3C;
  56. @color-settings-label-allowed-font: #FFF;
  57. @color-settings-label-deny-background: #2ECC71;
  58. @color-settings-label-deny-font: @color-font;
  59. @color-settings-return-background: @color-base;
  60. @color-settings-return-font: #FFF;
  61. /// Other
  62. @color-engines-font: #888;
  63. @color-percentage-div-background: #444;