Skip to content

Commit

Permalink
Merge pull request #29 from streamich/less-agressive-coloring
Browse files Browse the repository at this point in the history
Remove bold class decorations and make red bg lighter
  • Loading branch information
streamich authored Dec 7, 2024
2 parents e5aa970 + e389fc4 commit 2ab7aa7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/stories/snippets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ body {
</style>
</head>
<body id="MyApp">
<h1 alt="Yup, header">This is a heading</h1>
<h1 alt="Yup, header" class="someClass">This is a heading</h1>
<p bool num="123">This is a paragraph.</p>
<a href="https://example.com"><b>This</b> is a link</a>
<script>
Expand Down
3 changes: 1 addition & 2 deletions src/style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ const backgroundPadding: CssLikeObject = {

const redBackground: CssLikeObject = {
...backgroundPadding,
bg: "rgba(255,0,0,.08)",
bg: "rgba(255,0,0,.05)",
};

export const css = ({
Expand Down Expand Up @@ -185,7 +185,6 @@ export const css = ({
},
"&.class-name": {
col: className,
fw: "bold",
},
"&.important": {
col: important,
Expand Down

0 comments on commit 2ab7aa7

Please sign in to comment.