diff options
author | Volpeon <git@volpeon.ink> | 2024-11-21 15:34:57 +0100 |
---|---|---|
committer | Volpeon <git@volpeon.ink> | 2024-11-21 15:34:57 +0100 |
commit | bb9c06cebb60d7adb64abd3a2778c71d7541c113 (patch) | |
tree | 0bf9e80541551c0529c8fdebdf8c35c0de89a853 | |
parent | Headings (diff) | |
download | iro-design-bb9c06cebb60d7adb64abd3a2778c71d7541c113.tar.gz iro-design-bb9c06cebb60d7adb64abd3a2778c71d7541c113.tar.bz2 iro-design-bb9c06cebb60d7adb64abd3a2778c71d7541c113.zip |
Color palette
-rw-r--r-- | src/_config.defaults.scss | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/src/_config.defaults.scss b/src/_config.defaults.scss index ba73547..cf23f29 100644 --- a/src/_config.defaults.scss +++ b/src/_config.defaults.scss | |||
@@ -95,19 +95,19 @@ $theme-light: ( | |||
95 | ), | 95 | ), |
96 | 96 | ||
97 | --colors: ( | 97 | --colors: ( |
98 | --100: (math.div(0, 12) * 96 + 5) (.2 + .8 * easing.ease(math.div(0, 12))), | 98 | --100: (math.div(0, 12) * 94 + 7) (.2 + .8 * easing.ease(math.div(0, 12))), |
99 | --200: (math.div(1, 12) * 96 + 5) (.2 + .8 * easing.ease(math.div(1, 12))), | 99 | --200: (math.div(1, 12) * 94 + 7) (.2 + .8 * easing.ease(math.div(1, 12))), |
100 | --300: (math.div(2, 12) * 96 + 5) (.2 + .8 * easing.ease(math.div(2, 12))), | 100 | --300: (math.div(2, 12) * 94 + 7) (.2 + .8 * easing.ease(math.div(2, 12))), |
101 | --400: (math.div(3, 12) * 96 + 5) (.2 + .8 * easing.ease(math.div(3, 12))), | 101 | --400: (math.div(3, 12) * 94 + 7) (.2 + .8 * easing.ease(math.div(3, 12))), |
102 | --500: (math.div(4, 12) * 96 + 5) (.2 + .8 * easing.ease(math.div(4, 12))), | 102 | --500: (math.div(4, 12) * 94 + 7) (.2 + .8 * easing.ease(math.div(4, 12))), |
103 | --600: (math.div(5, 12) * 96 + 5) (.2 + .8 * easing.ease(math.div(5, 12))), | 103 | --600: (math.div(5, 12) * 94 + 7) (.2 + .8 * easing.ease(math.div(5, 12))), |
104 | --700: (math.div(6, 12) * 96 + 5) (.2 + .8 * easing.ease(math.div(6, 12))), | 104 | --700: (math.div(6, 12) * 94 + 7) (.2 + .8 * easing.ease(math.div(6, 12))), |
105 | --800: (math.div(7, 12) * 96 + 5) (.2 + .8 * easing.ease(math.div(7, 12))), | 105 | --800: (math.div(7, 12) * 94 + 7) (.2 + .8 * easing.ease(math.div(7, 12))), |
106 | --900: (math.div(8, 12) * 96 + 5) (.2 + .8 * easing.ease(math.div(8, 12))), | 106 | --900: (math.div(8, 12) * 94 + 7) (.2 + .8 * easing.ease(math.div(8, 12))), |
107 | --1000: (math.div(9, 12) * 96 + 5) (.2 + .8 * easing.ease(math.div(9, 12))), | 107 | --1000: (math.div(9, 12) * 94 + 7) (.2 + .8 * easing.ease(math.div(9, 12))), |
108 | --1100: (math.div(10, 12) * 96 + 5) (.2 + .8 * easing.ease(math.div(10, 12))), | 108 | --1100: (math.div(10, 12) * 94 + 7) (.2 + .8 * easing.ease(math.div(10, 12))), |
109 | --1200: (math.div(11, 12) * 96 + 5) (.2 + .8 * easing.ease(math.div(11, 12))), | 109 | --1200: (math.div(11, 12) * 94 + 7) (.2 + .8 * easing.ease(math.div(11, 12))), |
110 | --1300: (math.div(12, 12) * 96 + 5) (.2 + .8 * easing.ease(math.div(12, 12))), | 110 | --1300: (math.div(12, 12) * 94 + 7) (.2 + .8 * easing.ease(math.div(12, 12))), |
111 | ), | 111 | ), |
112 | ), | 112 | ), |
113 | 113 | ||
@@ -150,19 +150,19 @@ $theme-dark: ( | |||
150 | ), | 150 | ), |
151 | 151 | ||
152 | --colors: ( | 152 | --colors: ( |
153 | --100: (math.div(0, 12) * -110) (.3 + .7 * easing.ease(math.div(0, 12))), | 153 | --100: (easing.cubic-bezier(.2, .1, .8, .8, math.div(0, 12)) * -109 - .5) (.3 + .7 * easing.ease(math.div(0, 12))), |
154 | --200: (math.div(1, 12) * -110) (.3 + .7 * easing.ease(math.div(1, 12))), | 154 | --200: (easing.cubic-bezier(.2, .1, .8, .8, math.div(1, 12)) * -109 - .5) (.3 + .7 * easing.ease(math.div(1, 12))), |
155 | --300: (math.div(2, 12) * -110) (.3 + .7 * easing.ease(math.div(2, 12))), | 155 | --300: (easing.cubic-bezier(.2, .1, .8, .8, math.div(2, 12)) * -109 - .5) (.3 + .7 * easing.ease(math.div(2, 12))), |
156 | --400: (math.div(3, 12) * -110) (.3 + .7 * easing.ease(math.div(3, 12))), | 156 | --400: (easing.cubic-bezier(.2, .1, .8, .8, math.div(3, 12)) * -109 - .5) (.3 + .7 * easing.ease(math.div(3, 12))), |
157 | --500: (math.div(4, 12) * -110) (.3 + .7 * easing.ease(math.div(4, 12))), | 157 | --500: (easing.cubic-bezier(.2, .1, .8, .8, math.div(4, 12)) * -109 - .5) (.3 + .7 * easing.ease(math.div(4, 12))), |
158 | --600: (math.div(5, 12) * -110) (.3 + .7 * easing.ease(math.div(5, 12))), | 158 | --600: (easing.cubic-bezier(.2, .1, .8, .8, math.div(5, 12)) * -109 - .5) (.3 + .7 * easing.ease(math.div(5, 12))), |
159 | --700: (math.div(6, 12) * -110) (.3 + .7 * easing.ease(math.div(6, 12))), | 159 | --700: (easing.cubic-bezier(.2, .1, .8, .8, math.div(6, 12)) * -109 - .5) (.3 + .7 * easing.ease(math.div(6, 12))), |
160 | --800: (math.div(7, 12) * -110) (.3 + .7 * easing.ease(math.div(7, 12))), | 160 | --800: (easing.cubic-bezier(.2, .1, .8, .8, math.div(7, 12)) * -109 - .5) (.3 + .7 * easing.ease(math.div(7, 12))), |
161 | --900: (math.div(8, 12) * -110) (.3 + .7 * easing.ease(math.div(8, 12))), | 161 | --900: (easing.cubic-bezier(.2, .1, .8, .8, math.div(8, 12)) * -109 - .5) (.3 + .7 * easing.ease(math.div(8, 12))), |
162 | --1000: (math.div(9, 12) * -110) (.3 + .7 * easing.ease(math.div(9, 12))), | 162 | --1000: (easing.cubic-bezier(.2, .1, .8, .8, math.div(9, 12)) * -109 - .5) (.3 + .7 * easing.ease(math.div(9, 12))), |
163 | --1100: (math.div(10, 12) * -110) (.3 + .7 * easing.ease(math.div(10, 12))), | 163 | --1100: (easing.cubic-bezier(.2, .1, .8, .8, math.div(10, 12)) * -109 - .5) (.3 + .7 * easing.ease(math.div(10, 12))), |
164 | --1200: (math.div(11, 12) * -110) (.3 + .7 * easing.ease(math.div(11, 12))), | 164 | --1200: (easing.cubic-bezier(.2, .1, .8, .8, math.div(11, 12)) * -109 - .5) (.3 + .7 * easing.ease(math.div(11, 12))), |
165 | --1300: (math.div(12, 12) * -110) (.3 + .7 * easing.ease(math.div(12, 12))), | 165 | --1300: (easing.cubic-bezier(.2, .1, .8, .8, math.div(12, 12)) * -109 - .5) (.3 + .7 * easing.ease(math.div(12, 12))), |
166 | ), | 166 | ), |
167 | ), | 167 | ), |
168 | 168 | ||