diff --git a/src/rsg-components/Version/VersionRenderer.js b/src/rsg-components/Version/VersionRenderer.js index 65a83144f..62b4af731 100644 --- a/src/rsg-components/Version/VersionRenderer.js +++ b/src/rsg-components/Version/VersionRenderer.js @@ -4,7 +4,7 @@ import Styled from 'rsg-components/Styled'; const styles = ({ color, fontFamily, fontSize }) => ({ version: { - color: color.light, + color: color.error, margin: [[5, 0, 0, 0]], fontFamily: fontFamily.base, fontSize: fontSize.base, diff --git a/src/styles/theme.js b/src/styles/theme.js index aa4e10401..29ccabd86 100644 --- a/src/styles/theme.js +++ b/src/styles/theme.js @@ -13,11 +13,11 @@ export const color = { base: '#333', light: '#767676', lightest: '#ccc', - link: '#1978c8', + link: '#1873bf', linkHover: '#f28a25', border: '#e8e8e8', - name: '#7f9a44', - type: '#b77daa', + name: '#667c36', + type: '#a15994', error: '#c00', baseBackground: '#fff', codeBackground: '#f5f5f5',