-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
51cae95
commit f5e85fc
Showing
5 changed files
with
59 additions
and
57 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
<!DOCTYPE html> | ||
|
||
<html lang="en"> | ||
<head> | ||
<title>Connect</title> | ||
<meta charset="utf-8" /> | ||
<script type="module" src="./dist/index.js"></script> | ||
</head> | ||
<body> | ||
<vwk-connect-button-with-modal mode="DARK"></vwk-connect-button-with-modal> | ||
</body> | ||
<head> | ||
<title>Connect</title> | ||
<meta charset="utf-8" /> | ||
<script type="module" src="./dist/index.js"></script> | ||
</head> | ||
<body> | ||
<vwk-connect-button-with-modal | ||
mode="DARK" | ||
></vwk-connect-button-with-modal> | ||
</body> | ||
</html> |
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,17 +1,17 @@ | ||
import {html, svg} from 'lit'; | ||
import { html, svg } from 'lit'; | ||
|
||
export const CloseSvg = svg` | ||
<path | ||
d="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z" /> | ||
`; | ||
|
||
export const LightCloseSvg = html` | ||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#777777"> | ||
${CloseSvg} | ||
</svg> | ||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#777777"> | ||
${CloseSvg} | ||
</svg> | ||
`; | ||
export const DarkCloseSvg = html` | ||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#999999"> | ||
${CloseSvg} | ||
</svg> | ||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#999999"> | ||
${CloseSvg} | ||
</svg> | ||
`; |
12 changes: 6 additions & 6 deletions
12
packages/vanilla-wallet-kit/src/wallet-kit/constants/enums/colors.ts
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,9 +1,9 @@ | ||
import {css} from 'lit'; | ||
import { css } from 'lit'; | ||
|
||
export const Colors = { | ||
White: css`#ffffff`, | ||
LightGray: css`#f2f2f7`, | ||
Gray: css`#888888`, | ||
DarkGrey: css`#333333`, | ||
Dark: css`#222222`, | ||
White: css`#ffffff`, | ||
LightGray: css`#f2f2f7`, | ||
Gray: css`#888888`, | ||
DarkGrey: css`#333333`, | ||
Dark: css`#222222`, | ||
}; |
6 changes: 3 additions & 3 deletions
6
packages/vanilla-wallet-kit/src/wallet-kit/constants/enums/theme.ts
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,8 +1,8 @@ | ||
export const ThemeMode = { | ||
Light: 'LIGHT', | ||
Dark: 'DARK', | ||
Light: 'LIGHT', | ||
Dark: 'DARK', | ||
}; | ||
|
||
export const Theme = { | ||
Default: 'DEFAULT', | ||
Default: 'DEFAULT', | ||
}; |
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,35 +1,35 @@ | ||
{ | ||
"extends": "@vechain/repo-config/src/tsconfig/base.json", | ||
"compilerOptions": { | ||
"target": "es2021", | ||
"module": "es2020", | ||
"lib": ["es2021", "DOM", "DOM.Iterable"], | ||
"declaration": true, | ||
"declarationMap": true, | ||
"sourceMap": true, | ||
"inlineSources": true, | ||
"outDir": "./dist", | ||
"rootDir": "./src", | ||
"strict": true, | ||
"noUnusedLocals": true, | ||
"noUnusedParameters": true, | ||
"noImplicitReturns": true, | ||
"noFallthroughCasesInSwitch": true, | ||
"noImplicitAny": true, | ||
"noImplicitThis": true, | ||
"moduleResolution": "node", | ||
"allowSyntheticDefaultImports": true, | ||
"experimentalDecorators": true, | ||
"forceConsistentCasingInFileNames": true, | ||
"noImplicitOverride": true, | ||
"plugins": [ | ||
{ | ||
"name": "ts-lit-plugin", | ||
"strict": true | ||
} | ||
], | ||
"types": ["mocha"] | ||
}, | ||
"include": ["src/**/*.ts"], | ||
"exclude": [] | ||
"extends": "@vechain/repo-config/src/tsconfig/base.json", | ||
"compilerOptions": { | ||
"target": "es2021", | ||
"module": "es2020", | ||
"lib": ["es2021", "DOM", "DOM.Iterable"], | ||
"declaration": true, | ||
"declarationMap": true, | ||
"sourceMap": true, | ||
"inlineSources": true, | ||
"outDir": "./dist", | ||
"rootDir": "./src", | ||
"strict": true, | ||
"noUnusedLocals": true, | ||
"noUnusedParameters": true, | ||
"noImplicitReturns": true, | ||
"noFallthroughCasesInSwitch": true, | ||
"noImplicitAny": true, | ||
"noImplicitThis": true, | ||
"moduleResolution": "node", | ||
"allowSyntheticDefaultImports": true, | ||
"experimentalDecorators": true, | ||
"forceConsistentCasingInFileNames": true, | ||
"noImplicitOverride": true, | ||
"plugins": [ | ||
{ | ||
"name": "ts-lit-plugin", | ||
"strict": true | ||
} | ||
], | ||
"types": ["mocha"] | ||
}, | ||
"include": ["src/**/*.ts"], | ||
"exclude": [] | ||
} |