feat:2.5.0初始化专注启蒙项目

This commit is contained in:
R524809
2025-12-15 17:00:06 +08:00
parent 62ba977a45
commit fefe437f0f
29 changed files with 3465 additions and 700 deletions
@@ -1,4 +1,5 @@
import { getImage } from '../../../utils/index';
import { NUMBER_COLORS } from '../../../constants/mathFunctions';
/**
* 数字到英文单词的映射
@@ -16,19 +17,6 @@ const NUMBER_WORDS: Record<number, string> = {
10: 'ten',
};
const NUMBER_COLORS: Record<number, string> = {
1: '#9FC558',
2: '#CDB984',
3: '#B393B8',
4: '#ED7E97',
5: '#53B5B9',
6: '#B3B3B3',
7: '#EE8B7A',
8: '#F6C644',
9: '#99C1F4',
10: '#F5D25C',
};
/**
* 绘制预览区域的参数接口
*/