Skip to content
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

refactor: color palette #4283

Merged
merged 65 commits into from
Jul 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
65 commits
Select commit Hold shift + click to select a range
ab9c6d3
install stylelint
Schwehn42 Jun 29, 2024
b50f15b
disallow hex or named colors
Schwehn42 Jun 29, 2024
07253d3
add colors
Schwehn42 Jul 2, 2024
ef710bd
add most similiar color as comment
Schwehn42 Jul 3, 2024
87270f6
change colors to uppercase
Schwehn42 Jul 3, 2024
bbd0a15
$color-white
Schwehn42 Jul 3, 2024
8fd31d6
$color-white-one
Schwehn42 Jul 3, 2024
0c366ee
$color-white-two
Schwehn42 Jul 3, 2024
b426f16
$color-dark-one
Schwehn42 Jul 3, 2024
d71011f
$color-dark-two
Schwehn42 Jul 3, 2024
ce6219f
$color-lighter-gray
Schwehn42 Jul 3, 2024
41b7105
$color-light-gray
Schwehn42 Jul 3, 2024
c70c98a
$color-middle-gray
Schwehn42 Jul 3, 2024
c8b17ee
$color-dark-gray
Schwehn42 Jul 3, 2024
e5213a6
$color-darker-gray
Schwehn42 Jul 3, 2024
afa4fd6
$color-darkest-gray
Schwehn42 Jul 3, 2024
663d116
$color-black
Schwehn42 Jul 3, 2024
f3f6ccf
$color-dark-mode
Schwehn42 Jul 3, 2024
f2c7481
$color-dark-mode--disabled
Schwehn42 Jul 3, 2024
35d94de
$color-dark-mode-note
Schwehn42 Jul 3, 2024
221c11d
$color-dark-mode-note--hover
Schwehn42 Jul 3, 2024
57d7cb1
$menu-icon-background-color--dark
Schwehn42 Jul 3, 2024
8d78ca4
$tooltip-background-color--light
Schwehn42 Jul 3, 2024
aed1e51
$tooltip-background-color--dark
Schwehn42 Jul 3, 2024
ae7df31
$color-progess-circle
Schwehn42 Jul 3, 2024
b0ad1be
$color-icon-light-blue
Schwehn42 Jul 3, 2024
8ba2cc7
$color-board-reaction-name--dark
Schwehn42 Jul 3, 2024
60d2f0d
$color-board-reaction-name-self--light
Schwehn42 Jul 3, 2024
066a6fe
$color-board-reaction-name-self--dark
Schwehn42 Jul 3, 2024
922dd1d
$menu-icon-background-color--light
Schwehn42 Jul 3, 2024
943e570
accent colors
Schwehn42 Jul 3, 2024
d277dfc
add yielding yellow and info state colors
Schwehn42 Jul 9, 2024
e5dcf57
fix: comma
Schwehn42 Jul 9, 2024
16bf398
backlog-blue -> blue--500
Schwehn42 Jul 9, 2024
b7f258c
goal-green -> victory-verde
Schwehn42 Jul 9, 2024
96989ef
error-red -> error-ember
Schwehn42 Jul 9, 2024
53a0be4
planning-pink -> pink--500
Schwehn42 Jul 9, 2024
dbfe8ea
retro-red -> error-ember
Schwehn42 Jul 9, 2024
7656c45
grooming-green -> green--500
Schwehn42 Jul 9, 2024
28d111c
lean-lilac -> purple--500
Schwehn42 Jul 9, 2024
1f2dd02
grooming-green -> goal-green class name
Schwehn42 Jul 9, 2024
e6abf7a
lean-lilac -> poker-purple class name
Schwehn42 Jul 9, 2024
dea69da
poker-purple -> value-violet class name
Schwehn42 Jul 9, 2024
3dd84f3
hover-background-light -> white--300
Schwehn42 Jul 9, 2024
9a92870
hover-background-dark -> gray--300
Schwehn42 Jul 9, 2024
2b9062a
color-placeholder-light -> gray--800
Schwehn42 Jul 9, 2024
4ca08b4
color-placeholder-dark -> white--000
Schwehn42 Jul 9, 2024
17929ef
adjust color types
Schwehn42 Jul 9, 2024
db4e75e
adjust backend types
Schwehn42 Jul 9, 2024
cf1c454
db color enum migration
Schwehn42 Jul 9, 2024
5b7340d
Merge branch 'refs/heads/main' into js/colors
Schwehn42 Jul 9, 2024
404dc29
fix migration file prefix
Schwehn42 Jul 9, 2024
b4dbee3
fix tooltip color names
Schwehn42 Jul 9, 2024
6f5f9cd
fix note color
Schwehn42 Jul 9, 2024
359295b
fix snapshots
Schwehn42 Jul 9, 2024
60ca9a9
fix avatar test
Schwehn42 Jul 9, 2024
ddeaace
rename error ember -> critical carmine
Schwehn42 Jul 9, 2024
cfe97ec
fix postman collection
Schwehn42 Jul 9, 2024
1c1ee3e
Merge branch 'refs/heads/main' into js/colors
Schwehn42 Jul 10, 2024
d160319
Merge branch 'refs/heads/main' into js/colors
Schwehn42 Jul 11, 2024
055eca1
gray--x00 -> navy--x00
Schwehn42 Jul 11, 2024
6d04108
white--x00 -> gray--x00
Schwehn42 Jul 11, 2024
bebc015
add comments
Schwehn42 Jul 11, 2024
b680c8e
column background color fix
Schwehn42 Jul 11, 2024
ad696a1
tooltip background color fix
Schwehn42 Jul 11, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .stylelintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"rules": {
"color-no-hex": true,
"color-named": "never"
},
"ignoreFiles": ["src/constants/style.scss"]
}
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,8 @@
"redux-mock-store": "^1.5.4",
"resize-observer-polyfill": "^1.5.1",
"sass": "^1.77.7",
"stylelint": "^16.6.1",
"stylelint-config-standard": "^36.0.1",
"ts-jest": "^29.2.2",
"typescript": "^5.4.5"
},
Expand Down
Loading
Loading