File size: 3,323 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
import colorStudio from '@automattic/color-studio';
import { swatches } from './swatches';
export type Theme = {
colors: {
background: string;
surface: string;
primary: string;
primaryBorder: string;
primaryOver: string;
highlight: string;
highlightBorder: string;
highlightOver: string;
success: string;
discount: string;
disabledPaymentButtons: string;
disabledPaymentButtonsAccent: string;
disabledButtons: string;
borderColor: string;
borderColorLight: string;
borderColorDark: string;
upcomingStepBackground: string;
textColor: string;
textColorLight: string;
textColorDark: string;
textColorDisabled: string;
error: string;
warningBackground: string;
outline: string;
applePayButtonColor: string;
applePayButtonRollOverColor: string;
noticeBackground: string;
defaultNoticeIconBackground: string;
textColorOnDarkBackground: string;
paypalGold: string;
paypalGoldHover: string;
modalBackground: string;
disabledField: string;
placeHolderTextColor: string;
};
breakpoints: {
desktopUp: string;
tabletUp: string;
bigPhoneUp: string;
smallPhoneUp: string;
};
weights: {
bold: string;
normal: string;
};
fonts: {
body: string;
};
fontSize: {
small: string;
};
borderRadius: {
small: string;
};
};
const theme: Theme = {
colors: {
background: swatches.gray0,
surface: swatches.white,
primary: colorStudio.colors[ 'WordPress Blue 50' ],
primaryBorder: swatches.pink80,
primaryOver: colorStudio.colors[ 'WordPress Blue 60' ],
highlight: colorStudio.colors[ 'WordPress Blue 50' ],
highlightBorder: colorStudio.colors[ 'WordPress Blue 80' ],
highlightOver: colorStudio.colors[ 'WordPress Blue 60' ],
success: colorStudio.colors[ 'Green 30' ],
discount: colorStudio.colors[ 'Green 60' ],
disabledPaymentButtons: colorStudio.colors[ 'Gray 5' ],
disabledPaymentButtonsAccent: colorStudio.colors[ 'Gray 20' ],
disabledButtons: colorStudio.colors[ 'White' ],
borderColor: swatches.gray10,
borderColorLight: swatches.gray5,
borderColorDark: swatches.gray50,
upcomingStepBackground: swatches.gray5,
textColor: colorStudio.colors[ 'Gray 60' ],
textColorLight: colorStudio.colors[ 'Gray 50' ],
textColorDark: colorStudio.colors[ 'Gray 100' ],
textColorDisabled: colorStudio.colors[ 'Gray 50' ],
error: swatches.red50,
warningBackground: swatches.red0,
outline: colorStudio.colors[ 'WordPress Blue 30' ],
applePayButtonColor: swatches.black,
applePayButtonRollOverColor: swatches.gray80,
noticeBackground: swatches.gray80,
defaultNoticeIconBackground: swatches.gray30,
textColorOnDarkBackground: swatches.white,
paypalGold: '#F0C443',
paypalGoldHover: '#FFB900',
modalBackground: 'rgba( 255,255,255,0.9 )',
disabledField: colorStudio.colors[ 'Gray 0' ],
placeHolderTextColor: swatches.gray30,
},
breakpoints: {
desktopUp: 'min-width: 960px',
tabletUp: 'min-width: 700px',
bigPhoneUp: 'min-width: 480px',
smallPhoneUp: 'min-width: 400px',
},
weights: {
bold: '500',
normal: '400',
},
fonts: {
body: '-apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif',
},
fontSize: {
small: '14px',
},
borderRadius: {
small: '2px',
},
};
export default theme;
|