Skip to content

Commit bf28712

Browse files
authored
Change quarternary to quaternary (#549)
* Fixes #525
1 parent 9391dfb commit bf28712

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ The Deck tag is the root level tag for your presentation. It supports the follow
411411
| contentHeight | PropTypes.numbers | Baseline content area height (default: 700) |
412412
| contentWidth | PropTypes.numbers | Baseline content area width (default: 1000) |
413413
| history | PropTypes.object | Accepts custom configuration for [history](https://github.com/ReactTraining/history) |
414-
| progress | PropTypes.string | Accepts `pacman`, `bar`, `number` or `none`. To override the color, change the 'quarternary' color in the theme. |
414+
| progress | PropTypes.string | Accepts `pacman`, `bar`, `number` or `none`. To override the color, change the 'quaternary' color in the theme. |
415415
| theme | PropTypes.object | Accepts a theme object for styling your presentation |
416416
| transition | PropTypes.array | Accepts `slide`, `zoom`, `fade` or `spin`, and can be combined. Sets global slide transitions. **Note: If you use the 'scale' transition, fitted text won't work in Safari.** |
417417
| transitionDuration | PropTypes.number | Accepts integer value in milliseconds for global transition duration. |

src/themes/default/print.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const defaultColors = {
77
primary: 'black',
88
secondary: 'black',
99
tertiary: 'black',
10-
quarternary: 'black'
10+
quaternary: 'black'
1111
};
1212

1313
const defaultFonts = {
@@ -60,7 +60,7 @@ const print = (colorArgs = defaultColors, fontArgs = defaultFonts) => {
6060
outline: 0
6161
},
6262
prevIcon: {
63-
fill: colors.quarternary
63+
fill: colors.quaternary
6464
},
6565
next: {
6666
position: 'absolute',
@@ -73,7 +73,7 @@ const print = (colorArgs = defaultColors, fontArgs = defaultFonts) => {
7373
outline: 0
7474
},
7575
nextIcon: {
76-
fill: colors.quarternary
76+
fill: colors.quaternary
7777
}
7878
},
7979
prism: {

src/themes/default/screen.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const defaultColors = {
77
primary: '#f9c300',
88
secondary: 'black',
99
tertiary: 'white',
10-
quarternary: 'white'
10+
quaternary: 'white'
1111
};
1212

1313
const defaultFonts = {
@@ -101,7 +101,7 @@ const screen = (colorArgs = defaultColors, fontArgs = defaultFonts) => {
101101
outline: 0
102102
},
103103
prevIcon: {
104-
fill: colors.quarternary,
104+
fill: colors.quaternary,
105105
transition: 'fill 1s ease-in-out 0.2s'
106106
},
107107
next: {
@@ -115,7 +115,7 @@ const screen = (colorArgs = defaultColors, fontArgs = defaultFonts) => {
115115
outline: 0
116116
},
117117
nextIcon: {
118-
fill: colors.quarternary,
118+
fill: colors.quaternary,
119119
transition: 'fill 1s ease-in-out 0.2s'
120120
}
121121
},
@@ -147,7 +147,7 @@ const screen = (colorArgs = defaultColors, fontArgs = defaultFonts) => {
147147
borderTopLeftRadius: '10px',
148148
borderTopRightRadius: '10px',
149149
transition: 'all 0.3s ease-out',
150-
background: colors.quarternary
150+
background: colors.quaternary
151151
},
152152
pacmanBottom: {
153153
position: 'absolute',
@@ -156,7 +156,7 @@ const screen = (colorArgs = defaultColors, fontArgs = defaultFonts) => {
156156
height: '10px',
157157
borderBottomLeftRadius: '10px',
158158
borderBottomRightRadius: '10px',
159-
background: colors.quarternary,
159+
background: colors.quaternary,
160160
transition: 'all 0.3s ease-out',
161161
top: '10px'
162162
},
@@ -168,7 +168,7 @@ const screen = (colorArgs = defaultColors, fontArgs = defaultFonts) => {
168168
height: '10px',
169169
borderWidth: 2,
170170
borderStyle: 'solid',
171-
borderColor: colors.quarternary,
171+
borderColor: colors.quaternary,
172172
borderRadius: '50%',
173173
transition: 'all 0.3s ease-out'
174174
}
@@ -185,7 +185,7 @@ const screen = (colorArgs = defaultColors, fontArgs = defaultFonts) => {
185185
},
186186
bar: {
187187
height: '100%',
188-
background: colors.quarternary,
188+
background: colors.quaternary,
189189
transition: 'all 0.3s ease-out'
190190
}
191191
},
@@ -195,7 +195,7 @@ const screen = (colorArgs = defaultColors, fontArgs = defaultFonts) => {
195195
bottom: 10,
196196
right: 10,
197197
zIndex: 1000,
198-
color: colors.quarternary,
198+
color: colors.quaternary,
199199
transition: 'all 0.3s ease-out'
200200
}
201201
}

0 commit comments

Comments
 (0)