-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Theme Picker UI Update #704
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1622,7 +1622,7 @@ | |
"insertions": 40, | ||
"deletions": 0 | ||
}, | ||
"packages/view/src/assets/styles/_pallete.scss": { | ||
"packages/view/src/assets/styles/_pallette.scss": { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 세심한 typo 👍👍👍👍👍👍👍👍 |
||
"insertions": 295, | ||
"deletions": 0 | ||
}, | ||
|
@@ -1648,7 +1648,7 @@ | |
} | ||
} | ||
}, | ||
"message": "Merge pull request #20 from jeonghye-choi/feat/styles/n/nfeat: add style pallete" | ||
"message": "Merge pull request #20 from jeonghye-choi/feat/styles/n/nfeat: add style pallette" | ||
}, | ||
"clusterId": 10 | ||
}, | ||
|
@@ -1882,13 +1882,13 @@ | |
"insertions": 295, | ||
"deletions": 0, | ||
"files": { | ||
"packages/view/src/styles/_pallete.scss": { | ||
"packages/view/src/styles/_pallette.scss": { | ||
"insertions": 295, | ||
"deletions": 0 | ||
} | ||
} | ||
}, | ||
"message": "feat: add color palletes with levels" | ||
"message": "feat: add color pallettes with levels" | ||
}, | ||
"clusterId": 10 | ||
} | ||
|
@@ -2047,7 +2047,7 @@ | |
"insertions": 40, | ||
"deletions": 0 | ||
}, | ||
"packages/view/src/assets/styles/_pallete.scss": { | ||
"packages/view/src/assets/styles/_pallette.scss": { | ||
"insertions": 295, | ||
"deletions": 0 | ||
}, | ||
|
@@ -2493,7 +2493,7 @@ | |
"insertions": 40, | ||
"deletions": 0 | ||
}, | ||
"packages/view/src/assets/styles/_pallete.scss": { | ||
"packages/view/src/assets/styles/_pallette.scss": { | ||
"insertions": 295, | ||
"deletions": 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,4 +1,4 @@ | ||
@import "pallete"; | ||
@import "pallette"; | ||
|
||
$color--dark: $white; | ||
$color--light: $black; | ||
|
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,47 +1,48 @@ | ||
:root { | ||
--color-black: #000000; | ||
--color-white: #ffffff; | ||
--color-lightgray: #bdbdbd; | ||
--color-darkgray: #3e3e3e; | ||
--color-black: #010b13; | ||
--color-white: #f8f8f8; | ||
--color-light-gray: #b4bac6; | ||
--color-medium-gray: #757880; | ||
--color-dark-gray: #363a41; | ||
--color-text-white: #f8f8f8; | ||
} | ||
|
||
html[custom-type="githru"] { | ||
--color-primary: #e06091; | ||
--color-secondary: #8840bb; | ||
--color-tertiary: #ffd08a; | ||
--color-success: #07bebe; | ||
--color-failed: #ee2479; | ||
} | ||
|
||
html[custom-type="hacker-blue"] { | ||
--color-primary: #456cf7; | ||
--color-secondary: #465070; | ||
--color-secondary: #3f4c73; | ||
--color-tertiary: #6c60f0; | ||
--color-success: #1fc7a9; | ||
--color-failed: #ee2479; | ||
} | ||
|
||
html[custom-type="aqua"] { | ||
--color-primary: #25d4bf; | ||
--color-primary: #51decd; | ||
--color-secondary: #0687a3; | ||
--color-tertiary: #35ffff; | ||
--color-success: #0373b2; | ||
--color-tertiary: #a7ffff; | ||
--color-success: #008cde; | ||
--color-failed: #ee2479; | ||
} | ||
|
||
html[custom-type="cotton-candy"] { | ||
--color-primary: #ffcccb; | ||
--color-secondary: #feffd1; | ||
--color-tertiary: #8979ca; | ||
--color-tertiary: #a39aeb; | ||
--color-success: #7ad5c4; | ||
--color-failed: #ff8bbc; | ||
} | ||
|
||
html[custom-type="githru"] { | ||
--color-primary: #f14f8c; | ||
--color-secondary: #8421c9; | ||
--color-tertiary: #ffcb7d; | ||
--color-success: #07bebe; | ||
--color-failed: #ee2479; | ||
} | ||
|
||
html[custom-type="mono"] { | ||
--color-primary: #5f6f86; | ||
--color-primary: #68788f; | ||
--color-secondary: #3a4776; | ||
--color-tertiary: #9499c3; | ||
--color-success: #42b8b8; | ||
--color-failed: #ee2479; | ||
--color-tertiary: #9aaed1; | ||
--color-success: #6cafaf; | ||
--color-failed: #aa4b72; | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/view/src/styles/_pallete.scss → packages/view/src/styles/_pallette.scss
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,4 +1,4 @@ | ||
//pallete from Bootstrap | ||
//pallette from Bootstrap | ||
// red | ||
$red-50: #ffebee; | ||
$red-100: #ffcdd2; | ||
|
This file was deleted.
Oops, something went wrong.
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,7 +1,6 @@ | ||
@import "customTheme"; | ||
@import "colors"; | ||
@import "font"; | ||
@import "pallete"; | ||
@import "pallette"; | ||
@import "reset"; | ||
@import "theme"; | ||
@import "utils"; |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(궁금) 단위를 rem이랑 px 섞어서 쓰신 이유가 있으신가요??😮
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
일단 딱딱 떨어지는 단위만 rem으로 쓰긴 했습니다..ㅎㅎ 그런데 이 부분에 대해 뷰팀 전체 회의가 필요할 것 같습니닷...저희가 추후 고치더라도 처음 개발할 때부터 rem이면 더 좋겠네요!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(궁금) rem으로 하면 뭐가 더 좋아지나요?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://yozm.wishket.com/magazine/detail/1410/
https://code.visualstudio.com/docs/editor/accessibility
크롬 브라우저를 예시로 들자면 사용자가 브라우저의 폰트 크기를 임의로 조정할 경우 따라서 조정되는 기능이 있습니다! vscode에서도 window.zoomlevel로 에디터가 아닌 프로그램 자체의 확대 축소 기능을 제공하는 걸로 알고 있는데요, 그런데 이게 확장 프로그램이 rem을 쓰냐 px을 쓰냐에 따라 줌인아웃에 영향을 주는지는 확신할 수는 없네요..! ㅎㅎ