Skip to content

Commit

Permalink
Better export syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
javierbyte committed Jan 2, 2016
1 parent eb9f61e commit 4a423d2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -10,4 +10,4 @@ const UI = {
ProgressBar
}

export default UI
module.exports = UI
1 change: 1 addition & 0 deletions package.json
Expand Up @@ -26,6 +26,7 @@
},
"homepage": "https://github.com/javierbyte/react-native-ui#readme",
"dependencies": {
"lodash": "^3.10.1",
"tinycolor2": "^1.1.2"
}
}
6 changes: 3 additions & 3 deletions src/styles/colors.js
@@ -1,10 +1,10 @@
module.exports = {
RED: '#CF1216',
BLUE: 'rgb(58, 87, 149)',
RED: '#FF3B30',
BLUE: '#007AFF',

DANGER: '#f15a24',
WARNING: '#fbb03b',
OK: '#39b54a',

PRIMARY: '#CF1216' // RED
PRIMARY: '#007AFF' // BLUE
}

0 comments on commit 4a423d2

Please sign in to comment.