Advertisement
Guest User

alacritty.yml

a guest
Jun 17th, 2022
8,500
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.61 KB | None | 0 0
  1. # Font config:
  2. Font:
  3. # Normal (roman):
  4. normal:
  5. family: BigBlue_Terminal_437TT Nerd Font Mono
  6. style: Regular
  7.  
  8. bold:
  9. family: BigBlue_Terminal_437TT Nerd Font Mono
  10. style: Bold
  11.  
  12. italic:
  13. family: BigBlue_Terminal_437TT Nerd Font Mono
  14. style: Italic
  15.  
  16. bold_italic:
  17. family: BigBlue_Terminal_437TT Nerd Font Mono
  18. style: Bold Italic
  19.  
  20. book:
  21. family: BigBlue_Terminal_437TT Nerd Font Mono
  22. style: Book
  23.  
  24. size: 14.0
  25.  
  26. schemes:
  27.  
  28. one_dark: &one_dark
  29.  
  30. primary:
  31. background: '#282c34'
  32. foreground: '#abb2bf'
  33.  
  34. cursor:
  35. text: CellBackground
  36. cursor: '#528bff'
  37.  
  38. selection:
  39. text: CellForeground
  40. background: '#3e4451'
  41.  
  42. normal:
  43. black: '#5c6370'
  44. red: '#e06c75'
  45. green: '#98c379'
  46. yellow: '#e5c07b'
  47. blue: '#61afef'
  48. magenta: '#c678dd'
  49. cyan: '#56b6c2'
  50. white: '#828997'
  51.  
  52. cyberpunk: &cyberpunk
  53.  
  54. draw_bold_text_with_bright_colors: true
  55.  
  56. primary:
  57. background: '0x000b1e'
  58. foreground: '0x0abdc6'
  59.  
  60. normal:
  61. black: '0x123e7c'
  62. red: '0xff0000'
  63. green: '0xd300c4'
  64. yellow: '0xf57800'
  65. blue: '0x123e7c'
  66. magenta: '0x711c91'
  67. cyan: '0x0abdc6'
  68. white: '0xd7d7d5'
  69.  
  70. bright:
  71. black: '0x1c61c2'
  72. red: '0xff0000'
  73. green: '0xd300c4'
  74. yellow: '0xf57800'
  75. blue: '0x00ff00'
  76. magenta: '0x711c91'
  77. cyan: '0x0abdc6'
  78. white: '0xd7d7d5'
  79.  
  80. dim:
  81. black: '0x1c61c2'
  82. red: '0xff0000'
  83. green: '0xd300c4'
  84. yellow: '0xf57800'
  85. blue: '0x123e7c'
  86. magenta: '0x711c91'
  87. cyan: '0x0abdc6'
  88. white: '0xd7d7d5'
  89.  
  90. tokyo_night: &tokyo_night
  91.  
  92. primary:
  93. background: '0x1a1b26'
  94. foreground: '0xa9b1d6'
  95.  
  96. normal:
  97. black: '0x32344a'
  98. red: '0xf7768e'
  99. green: '0x9ece6a'
  100. yellow: '0xe0af68'
  101. blue: '0x7aa2f7'
  102. magenta: '0xad8ee6'
  103. cyan: '0x449dab'
  104. white: '0x787c99'
  105.  
  106. bright:
  107. black: '0x444b6a'
  108. red: '0xff7a93'
  109. green: '0xb9f27c'
  110. yellow: '0xff9e64'
  111. blue: '0x7da6ff'
  112. magenta: '0xbb9af7'
  113. cyan: '0x0db9d7'
  114. white: '0xacb0d0'
  115.  
  116. dracula: &dracula
  117.  
  118. primary:
  119. background: '0x282a36'
  120. foreground: '0xf8f8f2'
  121.  
  122. cursor:
  123. text: CellBackground
  124. cursor: CellForeground
  125.  
  126. vi_mode_cursor:
  127. text: CellBackground
  128. cursor: CellForeground
  129.  
  130. search:
  131. matches:
  132. foreground: '0x44475a'
  133. background: '0x50fa7b'
  134. focused_match:
  135. foreground: '0x44475a'
  136. background: '0xffb86c'
  137. bar:
  138. background: '0x282a36'
  139. foreground: '0xf8f8f2'
  140.  
  141. line_indicator:
  142. foreground: None
  143. background: None
  144.  
  145. selection:
  146. text: CellForeground
  147. background: '0x44475a'
  148.  
  149. normal:
  150. black: '0x000000'
  151. red: '0xff5555'
  152. green: '0x50fa7b'
  153. yellow: '0xf1fa8c'
  154. blue: '0xbd93f9'
  155. magenta: '0xff79c6'
  156. cyan: '0x8be9fd'
  157. white: '0xbfbfbf'
  158.  
  159. bright:
  160. black: '0x4d4d4d'
  161. red: '0xff6e67'
  162. green: '0x5af78e'
  163. yellow: '0xf4f99d'
  164. blue: '0xcaa9fa'
  165. magenta: '0xff92d0'
  166. cyan: '0x9aedfe'
  167. white: '0xe6e6e6'
  168.  
  169. dim:
  170. black: '0x14151b'
  171. red: '0xff2222'
  172. green: '0x1ef956'
  173. yellow: '0xebf85b'
  174. blue: '0x4d5b86'
  175. magenta: '0xff46b0'
  176. cyan: '0x59dffc'
  177. white: '0xe6e6d1'
  178.  
  179. colors: *one_dark
  180.  
  181. # hide mouse when typing:
  182. mouse:
  183. hide_when_typing: true
  184.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement