template.conf.j2 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. {% if background is defined %}
  2. background {{background}}
  3. {% endif %}
  4. {% if foreground is defined %}
  5. foreground {{foreground}}
  6. {% endif %}
  7. {% if cursorForeground is defined %}
  8. cursor {{cursorForeground}}
  9. {% endif %}
  10. {% if cursorBackground is defined %}
  11. cursor_text_color {{cursorBackground | removeAlpha}}
  12. {% endif %}
  13. {% if background is defined %}
  14. selection_foreground {{background | removeAlpha}}
  15. {% endif %}
  16. {% if selectionBackground is defined %}
  17. selection_background {{selectionBackground | removeAlpha}}
  18. {% endif %}
  19. {% if ansiBlack is defined %}
  20. # dull black
  21. color0 {{ansiBlack}}
  22. {% endif %}
  23. {% if ansiBrightBlack is defined %}
  24. # light black
  25. color8 {{ansiBrightBlack}}
  26. {% endif %}
  27. {% if ansiRed is defined %}
  28. # dull red
  29. color1 {{ansiRed}}
  30. {% endif %}
  31. {% if ansiBrightRed %}
  32. # light red
  33. color9 {{ansiBrightRed}}
  34. {% endif %}
  35. {% if ansiGreen is defined %}
  36. # dull green
  37. color2 {{ansiGreen}}
  38. {% endif %}
  39. {% if ansiBrightGreen is defined %}
  40. # light green
  41. color10 {{ansiBrightGreen}}
  42. {% endif %}
  43. {% if ansiYellow is defined %}
  44. # yellow
  45. color3 {{ansiYellow}}
  46. {% endif %}
  47. {% if ansiBrightYellow is defined %}
  48. # light yellow
  49. color11 {{ansiBrightYellow}}
  50. {% endif %}
  51. {% if ansiBlue is defined %}
  52. # blue
  53. color4 {{ansiBlue}}
  54. {% endif %}
  55. {% if ansiBrightBlue %}
  56. # light blue
  57. color12 {{ansiBrightBlue}}
  58. {% endif %}
  59. {% if ansiMagenta is defined %}
  60. # magenta
  61. color5 {{ansiMagenta}}
  62. {% endif %}
  63. {% if ansiBrightMagenta is defined %}
  64. # light magenta
  65. color13 {{ansiBrightMagenta}}
  66. {% endif %}
  67. {% if ansiCyan is defined %}
  68. # cyan
  69. color6 {{ansiCyan}}
  70. {% endif %}
  71. {% if ansiBrightCyan is defined %}
  72. # light cyan
  73. color14 {{ansiBrightCyan}}
  74. {% endif %}
  75. {% if ansiWhite is defined %}
  76. # dull white
  77. color7 {{ansiWhite}}
  78. {% endif %}
  79. {% if ansiBrightWhite is defined %}
  80. # bright white
  81. color15 {{ansiBrightWhite}}
  82. {% endif %}