diff --git a/src/button/__image_snapshots__/button-with-text-snap.png b/src/button/__image_snapshots__/button-with-text-snap.png index fba58d8..6a27ff3 100644 Binary files a/src/button/__image_snapshots__/button-with-text-snap.png and b/src/button/__image_snapshots__/button-with-text-snap.png differ diff --git a/src/button/button.tsx b/src/button/button.tsx index 685e737..9fc6125 100644 --- a/src/button/button.tsx +++ b/src/button/button.tsx @@ -1,14 +1,16 @@ import * as React from 'react'; const buttonStyle = { - border: '1px solid rgb(225, 225, 225)', + border: '1px solid #0065FF', borderRadius: '3px', - backgroundColor: 'rgb(238, 238, 238)', + backgroundColor: '#0065FF', cursor: 'pointer', fontSize: '15px', padding: '5px 10px', margin: '10px', - fontFamily: 'Helvetica, Arial, sans-serif' + fontFamily: 'Helvetica, Arial, sans-serif', + color: 'white', + fontWeight: 600 }; export const Button: React.FunctionComponent= ({children}) => {