aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/ts/components/InlineCode.tsx
diff options
context:
space:
mode:
authorMegan Pearson <megan.e.pearson@gmail.com>2018-10-19 15:37:14 +0800
committerAugust Skare <post@augustskare.no>2018-10-22 19:27:35 +0800
commit47b281b754a77a2104d39bafa5ea49584f8840cc (patch)
tree06d776c0980c91f58c776e10d326651915a7ff71 /packages/dev-tools-pages/ts/components/InlineCode.tsx
parent580e574c841fb9b0ba9d37a50bd5a0f787799ff2 (diff)
downloaddexon-sol-tools-47b281b754a77a2104d39bafa5ea49584f8840cc.tar
dexon-sol-tools-47b281b754a77a2104d39bafa5ea49584f8840cc.tar.gz
dexon-sol-tools-47b281b754a77a2104d39bafa5ea49584f8840cc.tar.bz2
dexon-sol-tools-47b281b754a77a2104d39bafa5ea49584f8840cc.tar.lz
dexon-sol-tools-47b281b754a77a2104d39bafa5ea49584f8840cc.tar.xz
dexon-sol-tools-47b281b754a77a2104d39bafa5ea49584f8840cc.tar.zst
dexon-sol-tools-47b281b754a77a2104d39bafa5ea49584f8840cc.zip
Implements color variables and updates components
Diffstat (limited to 'packages/dev-tools-pages/ts/components/InlineCode.tsx')
-rw-r--r--packages/dev-tools-pages/ts/components/InlineCode.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/dev-tools-pages/ts/components/InlineCode.tsx b/packages/dev-tools-pages/ts/components/InlineCode.tsx
index 037cfa675..f8aad8795 100644
--- a/packages/dev-tools-pages/ts/components/InlineCode.tsx
+++ b/packages/dev-tools-pages/ts/components/InlineCode.tsx
@@ -1,7 +1,8 @@
import styled from 'styled-components';
+import variables from '../variables';
const InlineCode = styled.code`
- background-color: #eceff9;
+ background-color: ${variables.colors.blueGray}
padding: 0.1875rem;
`;