Skip to content

Commit 0f37c3c

Browse files
armhilAutomated Version Bump
andauthored
Fix the GPT style commit (#40)
* Fix the GPT style commit * ci: version bump to 1.2.12 --------- Co-authored-by: Automated Version Bump <gh-action-bump-version@users.noreply.github.com>
1 parent f63a5af commit 0f37c3c

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "easy-code-formatter-styles",
3-
"version": "1.2.10",
3+
"version": "1.2.12",
44
"description": "a package which contains the styling details for easy code formatter office app.",
55
"main": "dist/index.js",
66
"repository": {
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { ITheme } from "./ITheme";
22

33
/** Added White text due to dark background */
4-
export const ChatGPTStyleDark: ITheme = {
4+
export const ChatGPTDark: ITheme = {
55
/** Display name */
6-
DisplayName: 'ChatGPT Style Dark',
6+
DisplayName: 'ChatGPT Dark',
77
/** Code styles */
88
CodeStyles: {
99
Keyword: {
@@ -49,7 +49,7 @@ export const ChatGPTStyleDark: ITheme = {
4949
},
5050
// Background color
5151
BackgroundStyle: {
52-
BackgroundColor: '2D2E41' // Dark background (near black)
52+
BackgroundColor: '2d2e41' // Dark background (near black)
5353
},
5454
// Line number background colors
5555
LineNumberStyle: {

src/themes/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import { A11YLight } from './A11YLight';
88
import { AtelierCaveLight } from './AtelierCaveLight';
99
import { AtelierCaveDark } from './AtelierCaveDark';
1010
import { BlueHintGray } from './BlueHintGray';
11+
import { ChatGPTDark } from './ChatGPTDark';
1112

1213
type ThemeDictionary = { [key: string]: ITheme };
1314

@@ -41,7 +42,8 @@ export const Themes: ThemeDictionary = {
4142
A11YLight,
4243
AtelierCaveLight,
4344
AtelierCaveDark,
44-
BlueHintGray
45+
BlueHintGray,
46+
ChatGPTDark
4547
}
4648

4749
export function GetLineNumberStyle(theme: string) {

0 commit comments

Comments
 (0)