-
Notifications
You must be signed in to change notification settings - Fork 842
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Increase contrast for EuiCodeBlock colors (#3309)
* Increase contrast for EuiCodeBlock colors * add CL * Update CHANGELOG.md Co-authored-by: Caroline Horn <[email protected]> * update changelog * Improving colors and examples * Adding more colors * remove unused classname * Addition and deletion shadow position * Separate tag and name classes * Improving html example * Removing unecessary empty space * Color blind palette Co-authored-by: Elizabet Oliveira <[email protected]> Co-authored-by: Caroline Horn <[email protected]>
- Loading branch information
1 parent
fd3dd84
commit a3c80cc
Showing
8 changed files
with
62 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<!--I'm an example of HTML--> | ||
<div> | ||
<h1>My First Heading</h1> | ||
<p>My first paragraph.</p> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import React from 'react'; | ||
|
||
export default () => ( | ||
<div className="MyComponent"> | ||
<h1>Hello world!</h1> | ||
</div> | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
CREATE TABLE "topic" ( | ||
"id" serial NOT NULL PRIMARY KEY, | ||
"forum_id" integer NOT NULL, | ||
"subject" varchar(255) NOT NULL | ||
); | ||
ALTER TABLE "topic" | ||
ADD CONSTRAINT forum_id FOREIGN KEY ("forum_id") | ||
REFERENCES "forum" ("id"); | ||
|
||
-- Initials | ||
insert into "topic" ("forum_id", "subject") | ||
values (2, 'D''artagnian'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters