Skip to content

Commit

Permalink
Improves wording in Hamilton hub
Browse files Browse the repository at this point in the history
  • Loading branch information
elijahbenizzy committed Sep 28, 2023
1 parent 2ce1b54 commit ee30189
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 21 deletions.
4 changes: 2 additions & 2 deletions contrib/docs/src/components/HomepageFeatures/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ const FeatureList = [
description: (
<>
Hamilton is built by defining python functions. You can do anything you can
do in python in a Hamilton dataflow. You can also therefore run your dataflows
anywhere you can run python.
do in python in a Hamilton dataflow, and run hamilton code
anywhere python runs.
</>
),
},
Expand Down
35 changes: 17 additions & 18 deletions contrib/docs/src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,26 @@
* work well for content-centric websites.
*/

/* You can override the default Infima variables here. */
:root {
--ifm-color-primary: #2e8555;
--ifm-color-primary-dark: #29784c;
--ifm-color-primary-darker: #277148;
--ifm-color-primary-darkest: #205d3b;
--ifm-color-primary-light: #33925d;
--ifm-color-primary-lighter: #359962;
--ifm-color-primary-lightest: #3cad6e;
--ifm-color-primary: rgb(66,157,188, 95%);
--ifm-color-primary-dark: rgb(43,49,82);
--ifm-color-primary-darker: rgb(234,85,86);
--ifm-color-primary-darkest: rgb(43,49,82);
--ifm-color-primary-light: rgb(76,167,198);
--ifm-color-primary-lighter: rgb(86,177,208);
--ifm-color-primary-lightest: rgb(96,187,218);
--ifm-code-font-size: 95%;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
--docusaurus-highlighted-code-line-bg: rgba(43,49,82, 0.1);
}

/* For readability concerns, you should choose a lighter palette in dark mode. */
[data-theme='dark'] {
--ifm-color-primary: #25c2a0;
--ifm-color-primary-dark: #21af90;
--ifm-color-primary-darker: #1fa588;
--ifm-color-primary-darkest: #1a8870;
--ifm-color-primary-light: #29d5b0;
--ifm-color-primary-lighter: #32d8b4;
--ifm-color-primary-lightest: #4fddbf;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
--ifm-color-primary: rgb(66,157,188);
--ifm-color-primary-dark: rgb(66,157,188);
--ifm-color-primary-darker: rgb(234,85,86);
--ifm-color-primary-darkest:rgb(66,157,188);
--ifm-color-primary-light: rgb(76,167,198);
--ifm-color-primary-lighter: rgb(86,177,208);
--ifm-color-primary-lightest: rgb(96,187,218);
--ifm-code-font-size: 95%;
--docusaurus-highlighted-code-line-bg: rgba(43,49,82, 0.1);
}
2 changes: 1 addition & 1 deletion contrib/docs/src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function HomepageHeader() {
<Link
className="button button--secondary button--lg"
to="/docs/intro">
Find and use a Hamilton Dataflow - 5min ⏱️
Integrate with your code in 5 minutes ⏱️
</Link>
</div>
</div>
Expand Down

0 comments on commit ee30189

Please sign in to comment.