Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • clickable-select-chevron
  • feat/new-image-formats
  • master
  • 1.2.0
  • 1.4.0
  • 1.4.1
  • 1.4.2
  • 1.5.0
  • 1.5.1
  • 1.5.2
  • 1.5.3
  • 1.5.4
  • 1.5.5
  • 1.6.0
  • 1.6.1
  • 1.6.2
  • 1.6.3
  • 1.6.4
  • 1.7.0
  • 1.8.0
  • 2.0.0
  • 2.0.0-alpha-1
  • 2.0.0-alpha-10
  • 2.0.0-alpha-11
  • 2.0.0-alpha-12
  • 2.0.0-alpha-13
  • 2.0.0-alpha-14
  • 2.0.0-alpha-15
  • 2.0.0-alpha-16
  • 2.0.0-alpha-17
  • 2.0.0-alpha-2
  • 2.0.0-alpha-3
  • 2.0.0-alpha-4
  • 2.0.0-alpha-5
  • 2.0.0-alpha-6
  • 2.0.0-alpha-7
  • 2.0.0-alpha-8
  • 2.0.0-alpha-9
  • 2.0.1
  • 2.0.2
  • 2.0.3
  • 2.0.4
  • 2.1.0
  • 2.1.1
  • 2.1.2
  • 2.10.0
  • 2.11.0
  • 2.12.1
  • 2.13.0
  • 2.14.0
  • 2.15.0
  • 2.16.0
  • 2.16.1
  • 2.17.0
  • 2.18.0
  • 2.19.0
  • 2.2.0
  • 2.2.1
  • 2.20.0
  • 2.3.0
  • 2.3.1
  • 2.3.2
  • 2.3.3
  • 2.3.4
  • 2.4.0
  • 2.5.0
  • 2.5.1
  • 2.5.2
  • 2.6.0
  • 2.7.0
  • 2.7.1
  • 2.8.0
  • 2.9.0
  • 2.9.1
74 results

Target

Select target project
  • to/weby/ui-styleguide
  • va-fighters/ui-styleguide
2 results
Select Git revision
  • master
  • 1.2.0
  • 1.4.0
  • 1.4.1
  • 1.4.2
  • 1.5.0
  • 1.5.1
  • 1.5.2
  • 1.5.3
  • 1.5.4
  • 1.5.5
  • 1.6.0
  • 1.6.1
  • 1.6.2
  • 1.6.3
  • 1.6.4
  • 1.7.0
  • 1.8.0
  • 2.0.0-alpha-1
  • 2.0.0-alpha-10
  • 2.0.0-alpha-11
  • 2.0.0-alpha-2
  • 2.0.0-alpha-3
  • 2.0.0-alpha-4
  • 2.0.0-alpha-5
  • 2.0.0-alpha-6
  • 2.0.0-alpha-7
  • 2.0.0-alpha-8
  • 2.0.0-alpha-9
29 results
Show changes
...@@ -6,7 +6,6 @@ const lighen = (clr, val) => Color(clr).lighten(val).rgb().string(); ...@@ -6,7 +6,6 @@ const lighen = (clr, val) => Color(clr).lighten(val).rgb().string();
const darken = (clr, val) => Color(clr).darken(val).rgb().string(); const darken = (clr, val) => Color(clr).darken(val).rgb().string();
module.exports = { module.exports = {
purge: {
content: [ content: [
"./source/**/*.mustache", "./source/**/*.mustache",
"./source/**/*.json", "./source/**/*.json",
...@@ -16,26 +15,57 @@ module.exports = { ...@@ -16,26 +15,57 @@ module.exports = {
], ],
options: { options: {
whitelistPatterns: [ whitelistPatterns: [
/^((sm|md|lg|xl)\:)?(block|inline|fixed|absolute|inline-block|flex|inline-flex|grid)/,
/^((sm|md|lg|xl)\:)?w-\d\d?/, /^((sm|md|lg|xl)\:)?w-\d\d?/,
/^((sm|md|lg|xl)\:)?w-(auto|full|screen)/,
/^((sm|md|lg|xl)\:)?h-\d\d?/, /^((sm|md|lg|xl)\:)?h-\d\d?/,
/^((sm|md|lg|xl)\:)?m.?-\d\d?/, /^((sm|md|lg|xl)\:)?h-screen/,
/^((sm|md|lg|xl)\:)?-?m.?-\d\d?/,
/^((sm|md|lg|xl)\:)?-?m.?-auto?/,
/^((sm|md|lg|xl)\:)?p.?-\d\d?/, /^((sm|md|lg|xl)\:)?p.?-\d\d?/,
/^((sm|md|lg|xl)\:)?space-.?-\d\d?/,
/^((sm|md|lg|xl)\:)?hidden/,
/^((sm|md|lg|xl)\:)?block/,
/^((sm|md|lg|xl)\:)?inline-block/,
/^((sm|md|lg|xl)\:)?flex/,
/^((sm|md|lg|xl)\:)?inline-flex/,
/^((sm|md|lg|xl)\:)?grid/,
/^((sm|md|lg|xl)\:)?gap-\d\d?/,
/^((sm|md|lg|xl)\:)?static/,
/^((sm|md|lg|xl)\:)?flex-row-*/,
/^((sm|md|lg|xl)\:)?flex-col-*/,
/^((sm|md|lg|xl)\:)?grid-cols-*/, /^((sm|md|lg|xl)\:)?grid-cols-*/,
/^((sm|md|lg|xl)\:)?col-span-*/, /^((sm|md|lg|xl)\:)?col-span-*/,
/^((sm|md|lg|xl)\:)?row-span-*/, /^((sm|md|lg|xl)\:)?row-span-*/,
/^((sm|md|lg|xl)\:)?grid-flow-*/, // grid flow /^((sm|md|lg|xl)\:)?order-*/,
/^((sm|md|lg|xl)\:)?items-*/,
/^((sm|md|lg|xl)\:)?float-*/,
/^((sm|md|lg|xl|hover)\:)?text-*/,
/^((sm|md|lg|xl)\:)?grid-flow-*/,
/^((sm|md|lg|xl)\:)?head-*/, /^((sm|md|lg|xl)\:)?head-*/,
/^text-*/, /^((sm|md|lg|xl)\:)?clearfix/,
/^max-w-*/, // maximum width /^((sm|md|lg|xl|hover)\:)?elevation-*/,
/ico--*/, // icons /^((sm|md|lg|xl|hover)\:)?border(-.*)?/,
/^((sm|md|lg|xl|hover)\:)?bg-opacity-\d\d?/,
/whitespace-*/,
/opacity-*/,
/^truncate/,
/^break-*/,
/^overflow-*/,
/^duration-*/,
/^max-w-*/,
/^max-h-*/,
/ico--*/,
], ],
}
}, },
theme: { theme: {
extend: { extend: {
maxWidth: { maxWidth: {
'xxs': '16rem', 'xxs': '16rem',
}, },
height: {
'120': '30rem',
},
opacity: { opacity: {
'85': '0.85', '85': '0.85',
}, },
...@@ -44,12 +74,17 @@ module.exports = { ...@@ -44,12 +74,17 @@ module.exports = {
}, },
spacing: { spacing: {
'0/5': '0.125rem', '0/5': '0.125rem',
'14': '3.5rem',
'28': '7rem', '28': '7rem',
'36': '9rem', '36': '9rem',
'44': '11rem', '44': '11rem',
'52': '13rem', '52': '13rem',
'80': '20rem' '80': '20rem',
} },
// flip-x
scale: {
'-1': '-1',
},
}, },
// Breakpoints // Breakpoints
screens, screens,
...@@ -97,10 +132,19 @@ module.exports = { ...@@ -97,10 +132,19 @@ module.exports = {
'700': '#202020', '700': '#202020',
'800': '#1f1f1f', '800': '#1f1f1f',
}, },
'olive': {
'100': '#d6e8b3'
},
'green': { 'green': {
'100': '#d6e8b3',
'200': '#92c6ab', '200': '#92c6ab',
'300': darken('#92c6ab', 0.1), '300': '#76cc9f',
'400': '#4ca971',
},
'yellow': {
'100': '#fff7bf',
'200': '#f7f38a',
'300': '#ffea5a',
'400': '#fde119',
}, },
'red': { 'red': {
'600': '#d60d53' '600': '#d60d53'
...@@ -135,6 +179,9 @@ module.exports = { ...@@ -135,6 +179,9 @@ module.exports = {
'400': '#840048', '400': '#840048',
'500': '#670047', '500': '#670047',
}, },
'pirati': {
'yellow': '#fec934'
},
}, },
container: { container: {
center: true, center: true,
...@@ -166,7 +213,7 @@ module.exports = { ...@@ -166,7 +213,7 @@ module.exports = {
// options // options
} }
), ),
require('tailwindcss-typography')({ require('@tailwindcss/typography')({
// all these options default to the values specified here // all these options default to the values specified here
ellipsis: false, // whether to generate ellipsis utilities ellipsis: false, // whether to generate ellipsis utilities
hyphens: false, // whether to generate hyphenation utilities hyphens: false, // whether to generate hyphenation utilities
...@@ -208,11 +255,13 @@ module.exports = { ...@@ -208,11 +255,13 @@ module.exports = {
'grey-125': { 'grey-125': {
text: 'black', text: 'black',
background: 'grey.125', background: 'grey.125',
hoverText: 'black',
}, },
'white': { 'white': {
text: 'black', text: 'black',
background: 'white', background: 'white',
iconBorder: 'grey.100', iconBorder: 'grey.100',
hoverText: 'black',
}, },
'blue-300': { 'blue-300': {
text: 'white', text: 'white',
...@@ -222,9 +271,13 @@ module.exports = { ...@@ -222,9 +271,13 @@ module.exports = {
text: 'white', text: 'white',
background: 'cyan.200', background: 'cyan.200',
}, },
'green-200': { 'green-300': {
text: 'white',
background: 'green.300',
},
'green-400': {
text: 'white', text: 'white',
background: 'green.200', background: 'green.400',
}, },
'orange-300': { 'orange-300': {
text: 'white', text: 'white',
...@@ -238,6 +291,10 @@ module.exports = { ...@@ -238,6 +291,10 @@ module.exports = {
text: 'white', text: 'white',
background: 'violet.500', background: 'violet.500',
}, },
'red-600': {
text: 'white',
background: 'red.600',
},
'brands-facebook': { 'brands-facebook': {
text: 'white', text: 'white',
background: 'brands.facebook', background: 'brands.facebook',
......