| 261 | } |
| 262 | |
| 263 | private static ColorScheme softNightScheme(final float hue) { |
| 264 | |
| 265 | final int text = HSBtoRGB(hue, 0.60F, 0.38F); |
| 266 | final int bold = HSBtoRGB(hue, 0.77F, 0.84F); |
| 267 | final int italic = HSBtoRGB(hue, 0.42F, 0.72F); |
| 268 | final int menu = HSBtoRGB(hue, 0.85F, 0.38F); |
| 269 | final int status_2 = HSBtoRGB(hue, 0.85F, 0.32F); |
| 270 | final int menup = HSBtoRGB(hue, 0.85F, 0.84F); |
| 271 | |
| 272 | final int[] colors = new int[] { |
| 273 | 0x000000, //bg |
| 274 | text, //text |
| 275 | bold, //bold |
| 276 | italic, //italic |
| 277 | bold, //heading |
| 278 | menu, //dummy |
| 279 | menu, //menu |
| 280 | menup, //menu p |
| 281 | italic, //wait |
| 282 | menu, //status |
| 283 | status_2, |
| 284 | text, //frame |
| 285 | }; |
| 286 | |
| 287 | return new ColorScheme(TYPE_SOFT, false, hue, colors); |
| 288 | } |
| 289 | |
| 290 | private static ColorScheme brightNightScheme(final float hue) { |
| 291 | |