Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
refactor: change rgba to rgb in variables
Browse files Browse the repository at this point in the history
  • Loading branch information
instalando committed Aug 21, 2023
1 parent 8352bd7 commit da7fa78
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/web-components/base/styles/variables.style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,22 +24,22 @@ export const variableStyle = css`
}
.sv-gray-200 {
color: rgba(var(--sv-gray-200), 1);
color: rgb(var(--sv-gray-200));
}
.sv-gray-400 {
color: rgba(var(--sv-gray-400), 1);
color: rgb(var(--sv-gray-400));
}
.sv-gray-500 {
color: rgba(var(--sv-gray-500), 1);
color: rgb(var(--sv-gray-500));
}
.sv-gray-600 {
color: rgba(var(--sv-gray-600), 1);
color: rgb(var(--sv-gray-600));
}
.sv-gray-700 {
color: rgba(var(--sv-gray-700), 1);
color: rgb(var(--sv-gray-700));
}
`;

0 comments on commit da7fa78

Please sign in to comment.