-
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from ful1e5/dev
🚀 GoogleDot v1.1.1
- Loading branch information
Showing
19 changed files
with
439 additions
and
396 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,32 @@ | ||
{ | ||
"name": "google_cursor", | ||
"version": "1.1.0", | ||
"description": "🍭 Cursor theme inspired on Google", | ||
"main": "index.js", | ||
"repository": "[email protected]:ful1e5/Google_Cursor.git", | ||
"author": "Kaiz Khatri", | ||
"license": "GPL-3.0", | ||
"private": true, | ||
"scripts": { | ||
"clean": "rm -rf bitmaps themes", | ||
"dev": "nodemon src/index.ts", | ||
"watch": "nodemon --inspect src/index.ts", | ||
"py_install": "pip install -r requirements.txt", | ||
"render": "npx ts-node src/index.ts", | ||
"build": "python build.py", | ||
"compile": "yarn clean && yarn render && yarn build" | ||
}, | ||
"devDependencies": { | ||
"@types/pixelmatch": "^5.2.2", | ||
"@types/pngjs": "^3.4.2", | ||
"@types/puppeteer": "^5.4.2", | ||
"nodemon": "^2.0.7", | ||
"ts-node": "^9.1.1", | ||
"typescript": "^4.1.3" | ||
}, | ||
"dependencies": { | ||
"pixelmatch": "^5.2.1", | ||
"pngjs": "^6.0.0", | ||
"puppeteer": "^5.5.0" | ||
} | ||
"name": "google_cursor", | ||
"version": "1.1.1", | ||
"description": "🍭 Cursor theme inspired on Google", | ||
"main": "index.js", | ||
"repository": "[email protected]:ful1e5/Google_Cursor.git", | ||
"author": "Kaiz Khatri", | ||
"license": "GPL-3.0", | ||
"private": true, | ||
"scripts": { | ||
"clean": "rm -rf bitmaps themes", | ||
"dev": "nodemon src/index.ts", | ||
"watch": "nodemon --inspect src/index.ts", | ||
"py_install": "pip install -r requirements.txt", | ||
"render": "npx ts-node src/index.ts", | ||
"build": "python build.py", | ||
"compile": "yarn clean && yarn render && yarn build" | ||
}, | ||
"devDependencies": { | ||
"@types/pixelmatch": "^5.2.2", | ||
"@types/pngjs": "^3.4.2", | ||
"@types/puppeteer": "^5.4.2", | ||
"nodemon": "^2.0.7", | ||
"ts-node": "^9.1.1", | ||
"typescript": "^4.1.3" | ||
}, | ||
"dependencies": { | ||
"pixelmatch": "^5.2.1", | ||
"pngjs": "^6.0.0", | ||
"puppeteer": "^5.5.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,36 @@ | ||
import { Colors } from "./core/types"; | ||
|
||
interface Config { | ||
themeName: string; | ||
color: Colors; | ||
themeName: string; | ||
color: Colors; | ||
} | ||
|
||
const black = "#000000"; | ||
const blue = "#4285F4"; | ||
const white = "#FFFFFF"; | ||
|
||
const config: Config[] = [ | ||
{ | ||
themeName: "GoogleDot-Blue", | ||
color: { | ||
base: blue, | ||
outline: white, | ||
}, | ||
}, | ||
{ | ||
themeName: "GoogleDot-Black", | ||
color: { | ||
base: black, | ||
outline: white, | ||
}, | ||
}, | ||
{ | ||
themeName: "GoogleDot-Blue", | ||
color: { | ||
base: blue, | ||
outline: white, | ||
}, | ||
}, | ||
{ | ||
themeName: "GoogleDot-Black", | ||
color: { | ||
base: black, | ||
outline: white, | ||
}, | ||
}, | ||
{ | ||
themeName: "GoogleDot-White", | ||
color: { | ||
base: white, | ||
outline: black, | ||
}, | ||
}, | ||
]; | ||
|
||
export { config }; |
Oops, something went wrong.