You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

colors.ts 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /*
  2. * SonarQube
  3. * Copyright (C) 2009-2023 SonarSource SA
  4. * mailto:info AT sonarsource DOT com
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 3 of the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public License
  17. * along with this program; if not, write to the Free Software Foundation,
  18. * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  19. */
  20. export default {
  21. white: [255, 255, 255],
  22. black: [0, 0, 0],
  23. sonarcloud: [243, 112, 42],
  24. grey: { 50: [235, 235, 235], 100: [221, 221, 221] },
  25. blueGrey: {
  26. 25: [252, 252, 253],
  27. 50: [239, 242, 249],
  28. 100: [225, 230, 243],
  29. 200: [197, 205, 223],
  30. 300: [166, 173, 194],
  31. 400: [106, 117, 144],
  32. 500: [62, 67, 87],
  33. 600: [42, 47, 64],
  34. 700: [29, 33, 47],
  35. 800: [18, 20, 29],
  36. 900: [8, 9, 12],
  37. },
  38. indigo: {
  39. 25: [244, 246, 255],
  40. 50: [232, 235, 255],
  41. 100: [209, 215, 254],
  42. 200: [189, 198, 255],
  43. 300: [159, 169, 237],
  44. 400: [123, 135, 217],
  45. 500: [93, 108, 208],
  46. 600: [75, 86, 187],
  47. 700: [71, 81, 143],
  48. 800: [43, 51, 104],
  49. 900: [27, 34, 80],
  50. },
  51. tangerine: {
  52. 25: [255, 248, 244],
  53. 50: [250, 230, 220],
  54. 100: [246, 206, 187],
  55. 200: [243, 185, 157],
  56. 300: [240, 166, 130],
  57. 400: [237, 148, 106],
  58. 500: [235, 131, 82],
  59. 600: [233, 116, 63],
  60. 700: [231, 102, 49],
  61. 800: [181, 68, 25],
  62. 900: [130, 43, 10],
  63. },
  64. green: {
  65. 50: [246, 254, 249],
  66. 100: [236, 253, 243],
  67. 200: [209, 250, 223],
  68. 300: [166, 244, 197],
  69. 400: [50, 213, 131],
  70. 500: [18, 183, 106],
  71. 600: [3, 152, 85],
  72. 700: [2, 122, 72],
  73. 800: [5, 96, 58],
  74. 900: [5, 79, 49],
  75. },
  76. yellowGreen: {
  77. 50: [247, 251, 230],
  78. 100: [241, 250, 210],
  79. 200: [225, 245, 168],
  80. 300: [197, 230, 124],
  81. 400: [166, 208, 91],
  82. 500: [110, 183, 18],
  83. 600: [104, 154, 48],
  84. 700: [83, 128, 39],
  85. 800: [63, 104, 29],
  86. 900: [49, 85, 22],
  87. },
  88. yellow: {
  89. 50: [252, 245, 228],
  90. 100: [254, 245, 208],
  91. 200: [252, 233, 163],
  92. 300: [250, 220, 121],
  93. 400: [248, 205, 92],
  94. 500: [245, 184, 64],
  95. 600: [209, 152, 52],
  96. 700: [174, 122, 41],
  97. 800: [140, 94, 30],
  98. 900: [102, 64, 15],
  99. },
  100. orange: {
  101. 50: [255, 240, 235],
  102. 100: [254, 219, 199],
  103. 200: [255, 214, 175],
  104. 300: [254, 150, 75],
  105. 400: [253, 113, 34],
  106. 500: [247, 95, 9],
  107. 600: [220, 94, 3],
  108. 700: [181, 71, 8],
  109. 800: [147, 55, 13],
  110. 900: [122, 46, 14],
  111. },
  112. red: {
  113. 50: [254, 243, 242],
  114. 100: [254, 228, 226],
  115. 200: [254, 205, 202],
  116. 300: [253, 162, 155],
  117. 400: [249, 112, 102],
  118. 500: [240, 68, 56],
  119. 600: [217, 45, 32],
  120. 700: [180, 35, 24],
  121. 800: [128, 27, 20],
  122. 900: [93, 29, 19],
  123. },
  124. blue: {
  125. 50: [245, 251, 255],
  126. 100: [233, 244, 251],
  127. 200: [184, 222, 241],
  128. 300: [143, 202, 234],
  129. 400: [110, 185, 228],
  130. 500: [85, 170, 223],
  131. 600: [69, 149, 203],
  132. 700: [58, 127, 173],
  133. 800: [49, 108, 146],
  134. 900: [23, 67, 97],
  135. },
  136. };