Skip to content

Commit

Permalink
fix: SBFE-752 remove commas from rgb values
Browse files Browse the repository at this point in the history
  • Loading branch information
supercede committed Jan 2, 2024
1 parent 8112085 commit 2e2e4f3
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions workspaces/themes/src/sportsbet.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@
--chichi-60: 255 78 100 / 0.56; /* #ff4e64 */
--chichi-10: 255 78 100 / 0.12; /* #ff4e64 */

--roshi: 12, 214, 100; /* #0CD664 */
--roshi-60: 12, 214, 100 / 0.56; /* #0CD664 */
--roshi-10: 12, 214, 100 / 0.12; /* #0CD664 */
--roshi: 12 214 100; /* #0CD664 */
--roshi-60: 12 214 100 / 0.56; /* #0CD664 */
--roshi-10: 12 214 100 / 0.12; /* #0CD664 */

--dodoria: 255, 138, 1; /* #FF8A01 */
--dodoria-60: 255, 138, 1 / 0.56; /* #FF8A01 */
--dodoria-10: 255, 138, 1 / 0.12; /* #FF8A01 */
--dodoria: 255 138 1; /* #FF8A01 */
--dodoria-60: 255 138 1 / 0.56; /* #FF8A01 */
--dodoria-10: 255 138 1 / 0.12; /* #FF8A01 */

--cell: 27 210 154; /* #1bd29a */
--cell-60: 27 210 154 / 0.56; /* #1bd29a */
Expand Down Expand Up @@ -103,13 +103,13 @@
--chichi-60: 255 78 100 / 0.56; /* #ff4e64 */
--chichi-10: 255 78 100 / 0.12; /* #ff4e64 */

--roshi: 12, 214, 100; /* #0CD664 */
--roshi-60: 12, 214, 100 / 0.56; /* #0CD664 */
--roshi-10: 12, 214, 100 / 0.12; /* #0CD664 */
--roshi: 12 214 100; /* #0CD664 */
--roshi-60: 12 214 100 / 0.56; /* #0CD664 */
--roshi-10: 12 214 100 / 0.12; /* #0CD664 */

--dodoria: 255, 138, 1; /* #FF8A01 */
--dodoria-60: 255, 138, 1 / 0.56; /* #FF8A01 */
--dodoria-10: 255, 138, 1 / 0.12; /* #FF8A01 */
--dodoria: 255 138 1; /* #FF8A01 */
--dodoria-60: 255 138 1 / 0.56; /* #FF8A01 */
--dodoria-10: 255 138 1 / 0.12; /* #FF8A01 */

--cell: 27 210 154; /* #1bd29a */
--cell-60: 27 210 154 / 0.56; /* #1bd29a */
Expand Down

0 comments on commit 2e2e4f3

Please sign in to comment.