新增: - backend/venv/ - Python 虚拟环境 - backend/start.sh - 启动脚本(使用虚拟环境) - backend/requirements.txt - 依赖列表 - .gitignore - 忽略虚拟环境和缓存文件 说明: - 每个项目使用独立虚拟环境 - 避免依赖冲突 - 启动脚本自动创建和激活虚拟环境
40 lines
862 B
JavaScript
40 lines
862 B
JavaScript
/**
|
|
* @typedef {Object} Theme
|
|
* @property {string[]} reset
|
|
* @property {string} black
|
|
* @property {string} red
|
|
* @property {string} green
|
|
* @property {string} yellow
|
|
* @property {string} blue
|
|
* @property {string} magenta
|
|
* @property {string} cyan
|
|
* @property {string} white
|
|
* @property {string} lightgrey
|
|
* @property {string} darkgrey
|
|
* @property {string} grey
|
|
* @property {string} dimgrey
|
|
*/
|
|
|
|
/**
|
|
* @type {Theme} theme
|
|
* A collection of colors to be used by the overlay.
|
|
* Partially adopted from Tomorrow Night Bright.
|
|
*/
|
|
const theme = {
|
|
reset: ['transparent', 'transparent'],
|
|
black: '000000',
|
|
red: 'D34F56',
|
|
green: 'B9C954',
|
|
yellow: 'E6C452',
|
|
blue: '7CA7D8',
|
|
magenta: 'C299D6',
|
|
cyan: '73BFB1',
|
|
white: 'FFFFFF',
|
|
lightgrey: 'C7C7C7',
|
|
darkgrey: 'A9A9A9',
|
|
grey: '474747',
|
|
dimgrey: '343434',
|
|
};
|
|
|
|
module.exports = theme;
|