8 lines
329 B
Python
8 lines
329 B
Python
from typing import Dict, List
|
|
|
|
LANGUAGE_COLORS: Dict[str, Dict[str, List[int]]] = {
|
|
"python": {"left": [51, 107, 156], "right": [255, 215, 67]},
|
|
"go": {"left": [105, 215, 226], "right": [255] * 3},
|
|
"bash": {"left": [40, 48, 55], "right": [79, 174, 36]},
|
|
"nvim": {"left": [74, 221, 57], "right": [0, 191, 255]},
|
|
}
|