definitions.less 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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: #084999;
  9. @color-base-light: #ECF0F1;
  10. @color-highlight: #094089;
  11. @color-black: #000000;
  12. ///
  13. @color-error: #db3434;
  14. @color-error-background: lighten(@color-error, 40%);
  15. @color-warning: #dbba34;
  16. @color-warning-background: lighten(@color-warning, 40%);
  17. @color-success: #42db34;
  18. @color-success-background: lighten(@color-success, 40%);
  19. /// General
  20. @color-font: #444;
  21. @color-font-light: #888;
  22. @color-red: #25a55b;
  23. @color-url-font: #29314d;
  24. @color-url-visited-font: #684898;
  25. @results-width: 50em;
  26. @search-width: 40em;
  27. //
  28. @color-a-font: @color-base;
  29. @color-a-font-hover: @color-base;
  30. /// Start-Screen
  31. /// Search-Input
  32. @color-search-border: @color-base;
  33. @color-search-background: #FFF;
  34. @color-search-font: #222;
  35. /// Autocompleter
  36. @color-autocompleter-choices-background: #FFF;
  37. @color-autocompleter-choices-border: @color-base;
  38. @color-autocompleter-choices-border-left-right: @color-base;
  39. @color-autocompleter-choices-border-bottom: @color-base;
  40. @color-autocompleter-choices-font: #444;
  41. /// Answers
  42. @color-answers-border: @color-base-dark;
  43. // Selected
  44. @color-autocompleter-selected-background: #444;
  45. @color-autocompleter-selected-font: #FFF;
  46. @color-autocompleter-selected-queried-font: #9FCFFF;
  47. /// Categories
  48. @color-categories-item-selected: @color-base;
  49. @color-categories-item-selected-font: #FFF;
  50. @color-categories-item-border-selected: @color-base-dark;
  51. @color-categories-item-border-unselected: #E8E7E6;
  52. @color-categories-item-border-unselected-hover: @color-base;
  53. /// Results
  54. @color-suggestions-button-background: @color-base;
  55. @color-suggestions-button-font: #FFF;
  56. @color-download-button-background: @color-base;
  57. @color-download-button-font: #FFF;
  58. @color-result-search-background: @color-base-light;
  59. @color-result-definition-border: gray;
  60. @color-result-torrent-border: lightgray;
  61. @color-result-top-border: #E8E7E6;
  62. // Link to result
  63. @color-result-link-font: @color-base-dark;
  64. @color-result-link-visited-font: @color-url-visited-font;
  65. // Url to result
  66. @color-result-url-font: @color-red;
  67. // Publish Date
  68. @color-result-publishdate-font: @color-font-light;
  69. // Images
  70. @color-result-image-span-background-hover: rgba(0, 0, 0, 0.6);
  71. @color-result-image-span-font: #FFF;
  72. // Search-URL
  73. @color-result-search-url-border: #888;
  74. @color-result-search-url-font: #444;
  75. /// Settings
  76. @color-settings-fieldset: @color-base;
  77. @color-settings-table-striped: #dbdbdb;
  78. @color-settings-tr-hover: #ececec;
  79. // Labels
  80. @color-settings-label-allowed-background: #E74C3C;
  81. @color-settings-label-allowed-font: #FFF;
  82. @color-settings-label-deny-background: #2ECC71;
  83. @color-settings-label-deny-font: @color-font;
  84. @color-settings-return-background: @color-base;
  85. @color-settings-return-font: #FFF;
  86. /// Other
  87. @color-engines-font: @color-font-light;
  88. @color-percentage-div-background: #444;
  89. /// Load fonts from this directory.
  90. @icon-font-path: "../../../fonts/";
  91. //** File name for all font files.
  92. @icon-font-name: "glyphicons-halflings-regular";
  93. //** Element ID within SVG icon file.
  94. @icon-font-svg-id: "glyphicons_halflingsregular";