Skip to content

Commit

Permalink
refactor: azure dynamix css var config
Browse files Browse the repository at this point in the history
  • Loading branch information
zackspear committed Jun 25, 2024
1 parent 9fe54f5 commit b29964e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions emhttp/plugins/dynamix/styles/default-azure.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@

--text-color: #606e7f;
--blockquote-text-color: var(--gray-800);
--alt-text-color: #909090;
--alt-text-color: var(--gray-400);
--disabled-text-color: var(--gray-500);
--inverse-text-color: var(--gray-900);
--link-text-color: var(--blue-800);

--background-color: #e4e2e4;
--alt-background-color: #383a34;
--background-color: var(--gray-150); /* Originally #e4e2e4 */
--alt-background-color: var(--gray-700); /* Originally #383a34 */
--opac-background-color: var(--gray-895);
--mild-background-color: #edeaef;
--usage-bar-background-color: #606e7f;
Expand All @@ -26,7 +26,7 @@
--disabled-border-color: var(--gray-500);
--input-border-color: var(--gray-200);
--disabled-input-border-color: var(--gray-500);
--inverse-border-color: #42453e;
--inverse-border-color: var(--gray-600); /* Originally #42453e */
--table-border-color: #606e7f;
--table-alt-border-color: #f3f0f4;
--dashboard-border-color: #cacfd2;
Expand Down
2 changes: 1 addition & 1 deletion emhttp/plugins/dynamix/styles/default-color-pallet.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
--gray-000: var(--white);
--gray-100: #f2f2f2;
--gray-120: rgba(242, 242, 242, 0.2); /* Consdensed from rgba(237, 234, 239, 0.2). && 242, 242, 242 == --gray-100 */
--gray-150: #e8e8e8;
--gray-150: #e8e8e8; /* Condensed from: #e4e2e4 */
--gray-200: #d3d3d3; /* Condensed from: #d9d9d9 #dcdcdc #d4d5d6 #e2e2e2 #e5e5e5 */
--gray-300: #cccccc; /* Condensed from: gray #c0c0c0 #a8a8a8 #c7c5cb #b0b0b0 */
--gray-400: #909090; /* Condensed from: #989898 #a2a2a2 #949494 #a6a7a7 */
Expand Down

0 comments on commit b29964e

Please sign in to comment.