@yxai/code 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.en.md +36 -0
- package/README.md +77 -0
- package/package.json +41 -0
- package/public/font.css +315 -0
- package/public/index.html +3550 -0
- package/public/vendor/github-dark.min.css +10 -0
- package/public/vendor/highlight.min.js +1244 -0
- package/public/vendor/marked.min.js +74 -0
- package/server.js +575 -0
package/README.en.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# yxcode
|
|
2
|
+
|
|
3
|
+
#### Description
|
|
4
|
+
{**When you're done, you can delete the content in this README and update the file with details for others getting started with your repository**}
|
|
5
|
+
|
|
6
|
+
#### Software Architecture
|
|
7
|
+
Software architecture description
|
|
8
|
+
|
|
9
|
+
#### Installation
|
|
10
|
+
|
|
11
|
+
1. xxxx
|
|
12
|
+
2. xxxx
|
|
13
|
+
3. xxxx
|
|
14
|
+
|
|
15
|
+
#### Instructions
|
|
16
|
+
|
|
17
|
+
1. xxxx
|
|
18
|
+
2. xxxx
|
|
19
|
+
3. xxxx
|
|
20
|
+
|
|
21
|
+
#### Contribution
|
|
22
|
+
|
|
23
|
+
1. Fork the repository
|
|
24
|
+
2. Create Feat_xxx branch
|
|
25
|
+
3. Commit your code
|
|
26
|
+
4. Create Pull Request
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
#### Gitee Feature
|
|
30
|
+
|
|
31
|
+
1. You can use Readme\_XXX.md to support different languages, such as Readme\_en.md, Readme\_zh.md
|
|
32
|
+
2. Gitee blog [blog.gitee.com](https://blog.gitee.com)
|
|
33
|
+
3. Explore open source project [https://gitee.com/explore](https://gitee.com/explore)
|
|
34
|
+
4. The most valuable open source project [GVP](https://gitee.com/gvp)
|
|
35
|
+
5. The manual of Gitee [https://gitee.com/help](https://gitee.com/help)
|
|
36
|
+
6. The most popular members [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/)
|
package/README.md
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
# @yxai/code
|
|
2
|
+
|
|
3
|
+
意心Code - Claude Code 可视化交互界面
|
|
4
|
+
|
|
5
|
+
一个基于 Express + WebSocket + Claude Agent SDK 的可视化交互界面,让你可以通过 Web 界面与 Claude AI 进行交互。
|
|
6
|
+
|
|
7
|
+
## 特性
|
|
8
|
+
|
|
9
|
+
- 🚀 极简架构:Express 静态服务 + WebSocket + Claude Agent SDK
|
|
10
|
+
- 🎨 可视化界面:友好的 Web UI
|
|
11
|
+
- 🔌 WebSocket 实时通信
|
|
12
|
+
- 📦 零构建:仅依赖 Node.js,无需构建工具
|
|
13
|
+
- 🌐 自动打开浏览器
|
|
14
|
+
|
|
15
|
+
## 安装
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npm install -g @yxai/code
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## 使用
|
|
22
|
+
|
|
23
|
+
安装后,直接运行命令:
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
yxaiCode
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
程序会自动:
|
|
30
|
+
1. 启动服务器(默认端口 3456)
|
|
31
|
+
2. 打开浏览器访问 http://localhost:3456
|
|
32
|
+
|
|
33
|
+
### 命令行选项
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
# 显示帮助信息
|
|
37
|
+
yxaiCode --help
|
|
38
|
+
|
|
39
|
+
# 显示版本号
|
|
40
|
+
yxaiCode --version
|
|
41
|
+
|
|
42
|
+
# 指定端口号
|
|
43
|
+
yxaiCode --port 8080
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
### 环境变量
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
# 使用环境变量指定端口
|
|
50
|
+
PORT=8080 yxaiCode
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
## 系统要求
|
|
54
|
+
|
|
55
|
+
- Node.js >= 18.0.0
|
|
56
|
+
|
|
57
|
+
## 开发
|
|
58
|
+
|
|
59
|
+
```bash
|
|
60
|
+
# 克隆仓库
|
|
61
|
+
git clone https://gitee.com/ccnetcore/yxcode.git
|
|
62
|
+
cd yxcode
|
|
63
|
+
|
|
64
|
+
# 安装依赖
|
|
65
|
+
npm install
|
|
66
|
+
|
|
67
|
+
# 本地测试
|
|
68
|
+
npm link
|
|
69
|
+
yxaiCode
|
|
70
|
+
|
|
71
|
+
# 取消链接
|
|
72
|
+
npm unlink -g @yxai/code
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
## 许可证
|
|
76
|
+
|
|
77
|
+
MIT
|
package/package.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@yxai/code",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "意心Code - Claude Code 可视化交互界面",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "server.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"yxaiCode": "server.js"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"start": "node server.js",
|
|
12
|
+
"dev": "node server.js"
|
|
13
|
+
},
|
|
14
|
+
"files": [
|
|
15
|
+
"server.js",
|
|
16
|
+
"public"
|
|
17
|
+
],
|
|
18
|
+
"keywords": [
|
|
19
|
+
"claude-code",
|
|
20
|
+
"ai",
|
|
21
|
+
"ui",
|
|
22
|
+
"anthropic",
|
|
23
|
+
"yxai"
|
|
24
|
+
],
|
|
25
|
+
"author": "",
|
|
26
|
+
"license": "MIT",
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "https://gitee.com/ccnetcore/yxcode.git"
|
|
30
|
+
},
|
|
31
|
+
"engines": {
|
|
32
|
+
"node": ">=18.0.0"
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@anthropic-ai/claude-agent-sdk": "^0.2.59",
|
|
36
|
+
"express": "^4.21.0",
|
|
37
|
+
"highlight.js": "^11.11.1",
|
|
38
|
+
"marked": "^17.0.4",
|
|
39
|
+
"ws": "^8.18.0"
|
|
40
|
+
}
|
|
41
|
+
}
|
package/public/font.css
ADDED
|
@@ -0,0 +1,315 @@
|
|
|
1
|
+
/* cyrillic-ext */
|
|
2
|
+
@font-face {
|
|
3
|
+
font-family: 'Inter';
|
|
4
|
+
font-style: normal;
|
|
5
|
+
font-weight: 300;
|
|
6
|
+
font-display: swap;
|
|
7
|
+
src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2) format('woff2');
|
|
8
|
+
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
|
9
|
+
}
|
|
10
|
+
/* cyrillic */
|
|
11
|
+
@font-face {
|
|
12
|
+
font-family: 'Inter';
|
|
13
|
+
font-style: normal;
|
|
14
|
+
font-weight: 300;
|
|
15
|
+
font-display: swap;
|
|
16
|
+
src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2) format('woff2');
|
|
17
|
+
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
18
|
+
}
|
|
19
|
+
/* greek-ext */
|
|
20
|
+
@font-face {
|
|
21
|
+
font-family: 'Inter';
|
|
22
|
+
font-style: normal;
|
|
23
|
+
font-weight: 300;
|
|
24
|
+
font-display: swap;
|
|
25
|
+
src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2) format('woff2');
|
|
26
|
+
unicode-range: U+1F00-1FFF;
|
|
27
|
+
}
|
|
28
|
+
/* greek */
|
|
29
|
+
@font-face {
|
|
30
|
+
font-family: 'Inter';
|
|
31
|
+
font-style: normal;
|
|
32
|
+
font-weight: 300;
|
|
33
|
+
font-display: swap;
|
|
34
|
+
src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2) format('woff2');
|
|
35
|
+
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
|
|
36
|
+
}
|
|
37
|
+
/* vietnamese */
|
|
38
|
+
@font-face {
|
|
39
|
+
font-family: 'Inter';
|
|
40
|
+
font-style: normal;
|
|
41
|
+
font-weight: 300;
|
|
42
|
+
font-display: swap;
|
|
43
|
+
src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2) format('woff2');
|
|
44
|
+
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
|
45
|
+
}
|
|
46
|
+
/* latin-ext */
|
|
47
|
+
@font-face {
|
|
48
|
+
font-family: 'Inter';
|
|
49
|
+
font-style: normal;
|
|
50
|
+
font-weight: 300;
|
|
51
|
+
font-display: swap;
|
|
52
|
+
src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2) format('woff2');
|
|
53
|
+
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
54
|
+
}
|
|
55
|
+
/* latin */
|
|
56
|
+
@font-face {
|
|
57
|
+
font-family: 'Inter';
|
|
58
|
+
font-style: normal;
|
|
59
|
+
font-weight: 300;
|
|
60
|
+
font-display: swap;
|
|
61
|
+
src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2) format('woff2');
|
|
62
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
|
63
|
+
}
|
|
64
|
+
/* cyrillic-ext */
|
|
65
|
+
@font-face {
|
|
66
|
+
font-family: 'Inter';
|
|
67
|
+
font-style: normal;
|
|
68
|
+
font-weight: 400;
|
|
69
|
+
font-display: swap;
|
|
70
|
+
src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2) format('woff2');
|
|
71
|
+
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
|
72
|
+
}
|
|
73
|
+
/* cyrillic */
|
|
74
|
+
@font-face {
|
|
75
|
+
font-family: 'Inter';
|
|
76
|
+
font-style: normal;
|
|
77
|
+
font-weight: 400;
|
|
78
|
+
font-display: swap;
|
|
79
|
+
src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2) format('woff2');
|
|
80
|
+
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
81
|
+
}
|
|
82
|
+
/* greek-ext */
|
|
83
|
+
@font-face {
|
|
84
|
+
font-family: 'Inter';
|
|
85
|
+
font-style: normal;
|
|
86
|
+
font-weight: 400;
|
|
87
|
+
font-display: swap;
|
|
88
|
+
src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2) format('woff2');
|
|
89
|
+
unicode-range: U+1F00-1FFF;
|
|
90
|
+
}
|
|
91
|
+
/* greek */
|
|
92
|
+
@font-face {
|
|
93
|
+
font-family: 'Inter';
|
|
94
|
+
font-style: normal;
|
|
95
|
+
font-weight: 400;
|
|
96
|
+
font-display: swap;
|
|
97
|
+
src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2) format('woff2');
|
|
98
|
+
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
|
|
99
|
+
}
|
|
100
|
+
/* vietnamese */
|
|
101
|
+
@font-face {
|
|
102
|
+
font-family: 'Inter';
|
|
103
|
+
font-style: normal;
|
|
104
|
+
font-weight: 400;
|
|
105
|
+
font-display: swap;
|
|
106
|
+
src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2) format('woff2');
|
|
107
|
+
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
|
108
|
+
}
|
|
109
|
+
/* latin-ext */
|
|
110
|
+
@font-face {
|
|
111
|
+
font-family: 'Inter';
|
|
112
|
+
font-style: normal;
|
|
113
|
+
font-weight: 400;
|
|
114
|
+
font-display: swap;
|
|
115
|
+
src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2) format('woff2');
|
|
116
|
+
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
117
|
+
}
|
|
118
|
+
/* latin */
|
|
119
|
+
@font-face {
|
|
120
|
+
font-family: 'Inter';
|
|
121
|
+
font-style: normal;
|
|
122
|
+
font-weight: 400;
|
|
123
|
+
font-display: swap;
|
|
124
|
+
src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2) format('woff2');
|
|
125
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
|
126
|
+
}
|
|
127
|
+
/* cyrillic-ext */
|
|
128
|
+
@font-face {
|
|
129
|
+
font-family: 'Inter';
|
|
130
|
+
font-style: normal;
|
|
131
|
+
font-weight: 500;
|
|
132
|
+
font-display: swap;
|
|
133
|
+
src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2) format('woff2');
|
|
134
|
+
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
|
135
|
+
}
|
|
136
|
+
/* cyrillic */
|
|
137
|
+
@font-face {
|
|
138
|
+
font-family: 'Inter';
|
|
139
|
+
font-style: normal;
|
|
140
|
+
font-weight: 500;
|
|
141
|
+
font-display: swap;
|
|
142
|
+
src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2) format('woff2');
|
|
143
|
+
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
144
|
+
}
|
|
145
|
+
/* greek-ext */
|
|
146
|
+
@font-face {
|
|
147
|
+
font-family: 'Inter';
|
|
148
|
+
font-style: normal;
|
|
149
|
+
font-weight: 500;
|
|
150
|
+
font-display: swap;
|
|
151
|
+
src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2) format('woff2');
|
|
152
|
+
unicode-range: U+1F00-1FFF;
|
|
153
|
+
}
|
|
154
|
+
/* greek */
|
|
155
|
+
@font-face {
|
|
156
|
+
font-family: 'Inter';
|
|
157
|
+
font-style: normal;
|
|
158
|
+
font-weight: 500;
|
|
159
|
+
font-display: swap;
|
|
160
|
+
src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2) format('woff2');
|
|
161
|
+
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
|
|
162
|
+
}
|
|
163
|
+
/* vietnamese */
|
|
164
|
+
@font-face {
|
|
165
|
+
font-family: 'Inter';
|
|
166
|
+
font-style: normal;
|
|
167
|
+
font-weight: 500;
|
|
168
|
+
font-display: swap;
|
|
169
|
+
src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2) format('woff2');
|
|
170
|
+
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
|
171
|
+
}
|
|
172
|
+
/* latin-ext */
|
|
173
|
+
@font-face {
|
|
174
|
+
font-family: 'Inter';
|
|
175
|
+
font-style: normal;
|
|
176
|
+
font-weight: 500;
|
|
177
|
+
font-display: swap;
|
|
178
|
+
src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2) format('woff2');
|
|
179
|
+
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
180
|
+
}
|
|
181
|
+
/* latin */
|
|
182
|
+
@font-face {
|
|
183
|
+
font-family: 'Inter';
|
|
184
|
+
font-style: normal;
|
|
185
|
+
font-weight: 500;
|
|
186
|
+
font-display: swap;
|
|
187
|
+
src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2) format('woff2');
|
|
188
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
|
189
|
+
}
|
|
190
|
+
/* cyrillic-ext */
|
|
191
|
+
@font-face {
|
|
192
|
+
font-family: 'Inter';
|
|
193
|
+
font-style: normal;
|
|
194
|
+
font-weight: 600;
|
|
195
|
+
font-display: swap;
|
|
196
|
+
src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2) format('woff2');
|
|
197
|
+
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
|
198
|
+
}
|
|
199
|
+
/* cyrillic */
|
|
200
|
+
@font-face {
|
|
201
|
+
font-family: 'Inter';
|
|
202
|
+
font-style: normal;
|
|
203
|
+
font-weight: 600;
|
|
204
|
+
font-display: swap;
|
|
205
|
+
src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2) format('woff2');
|
|
206
|
+
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
207
|
+
}
|
|
208
|
+
/* greek-ext */
|
|
209
|
+
@font-face {
|
|
210
|
+
font-family: 'Inter';
|
|
211
|
+
font-style: normal;
|
|
212
|
+
font-weight: 600;
|
|
213
|
+
font-display: swap;
|
|
214
|
+
src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2) format('woff2');
|
|
215
|
+
unicode-range: U+1F00-1FFF;
|
|
216
|
+
}
|
|
217
|
+
/* greek */
|
|
218
|
+
@font-face {
|
|
219
|
+
font-family: 'Inter';
|
|
220
|
+
font-style: normal;
|
|
221
|
+
font-weight: 600;
|
|
222
|
+
font-display: swap;
|
|
223
|
+
src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2) format('woff2');
|
|
224
|
+
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
|
|
225
|
+
}
|
|
226
|
+
/* vietnamese */
|
|
227
|
+
@font-face {
|
|
228
|
+
font-family: 'Inter';
|
|
229
|
+
font-style: normal;
|
|
230
|
+
font-weight: 600;
|
|
231
|
+
font-display: swap;
|
|
232
|
+
src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2) format('woff2');
|
|
233
|
+
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
|
234
|
+
}
|
|
235
|
+
/* latin-ext */
|
|
236
|
+
@font-face {
|
|
237
|
+
font-family: 'Inter';
|
|
238
|
+
font-style: normal;
|
|
239
|
+
font-weight: 600;
|
|
240
|
+
font-display: swap;
|
|
241
|
+
src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2) format('woff2');
|
|
242
|
+
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
243
|
+
}
|
|
244
|
+
/* latin */
|
|
245
|
+
@font-face {
|
|
246
|
+
font-family: 'Inter';
|
|
247
|
+
font-style: normal;
|
|
248
|
+
font-weight: 600;
|
|
249
|
+
font-display: swap;
|
|
250
|
+
src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2) format('woff2');
|
|
251
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
|
252
|
+
}
|
|
253
|
+
/* cyrillic-ext */
|
|
254
|
+
@font-face {
|
|
255
|
+
font-family: 'Inter';
|
|
256
|
+
font-style: normal;
|
|
257
|
+
font-weight: 700;
|
|
258
|
+
font-display: swap;
|
|
259
|
+
src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2) format('woff2');
|
|
260
|
+
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
|
261
|
+
}
|
|
262
|
+
/* cyrillic */
|
|
263
|
+
@font-face {
|
|
264
|
+
font-family: 'Inter';
|
|
265
|
+
font-style: normal;
|
|
266
|
+
font-weight: 700;
|
|
267
|
+
font-display: swap;
|
|
268
|
+
src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2) format('woff2');
|
|
269
|
+
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
270
|
+
}
|
|
271
|
+
/* greek-ext */
|
|
272
|
+
@font-face {
|
|
273
|
+
font-family: 'Inter';
|
|
274
|
+
font-style: normal;
|
|
275
|
+
font-weight: 700;
|
|
276
|
+
font-display: swap;
|
|
277
|
+
src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2) format('woff2');
|
|
278
|
+
unicode-range: U+1F00-1FFF;
|
|
279
|
+
}
|
|
280
|
+
/* greek */
|
|
281
|
+
@font-face {
|
|
282
|
+
font-family: 'Inter';
|
|
283
|
+
font-style: normal;
|
|
284
|
+
font-weight: 700;
|
|
285
|
+
font-display: swap;
|
|
286
|
+
src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2) format('woff2');
|
|
287
|
+
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
|
|
288
|
+
}
|
|
289
|
+
/* vietnamese */
|
|
290
|
+
@font-face {
|
|
291
|
+
font-family: 'Inter';
|
|
292
|
+
font-style: normal;
|
|
293
|
+
font-weight: 700;
|
|
294
|
+
font-display: swap;
|
|
295
|
+
src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2) format('woff2');
|
|
296
|
+
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
|
297
|
+
}
|
|
298
|
+
/* latin-ext */
|
|
299
|
+
@font-face {
|
|
300
|
+
font-family: 'Inter';
|
|
301
|
+
font-style: normal;
|
|
302
|
+
font-weight: 700;
|
|
303
|
+
font-display: swap;
|
|
304
|
+
src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2) format('woff2');
|
|
305
|
+
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
306
|
+
}
|
|
307
|
+
/* latin */
|
|
308
|
+
@font-face {
|
|
309
|
+
font-family: 'Inter';
|
|
310
|
+
font-style: normal;
|
|
311
|
+
font-weight: 700;
|
|
312
|
+
font-display: swap;
|
|
313
|
+
src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2) format('woff2');
|
|
314
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
|
315
|
+
}
|