Skip to content

Commit

Permalink
feat(dashboard): update font colour
Browse files Browse the repository at this point in the history
  • Loading branch information
eysi09 committed Feb 11, 2019
1 parent 8f91454 commit dccbf87
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dashboard/src/components/global-style.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import {
const styles = css`
html {
box-sizing: border-box;
color: ${colors.black};
color: ${colors.gardenBlack};
font-size: ${"1em" /*was: 44%*/};
${media.tablet`
Expand Down
2 changes: 1 addition & 1 deletion dashboard/src/components/logs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ const selectStyles = {
}),
option: (base, state) => ({
...base,
color: colors.black,
color: colors.gardenBlack,
backgroundColor: state.isSelected
? colors.gardenGreenDark
: state.isFocused ? colors.gardenGreenLight : colors.gardenWhite,
Expand Down
2 changes: 1 addition & 1 deletion dashboard/src/components/terminal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ interface Props {
}

const Term = styled.div`
background-color: ${colors.black};
background-color: ${colors.gardenBlack};
border-radius: 2px;
max-height: 45rem;
max-width: calc(18wv - 4rem);
Expand Down
1 change: 0 additions & 1 deletion dashboard/src/styles/variables.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ function gardenPinkLighten(pct: number) {
// The rest are for those cases where none of the official colours worked.
export const colors = {
border: "rgba(0,0,0,0.12)",
black: "#030303",
gray: "#f0f0f0",
grayLight: "#fafafa",
gardenGray: "#555656",
Expand Down

0 comments on commit dccbf87

Please sign in to comment.