favoritos
Version:
Favoritos is a JavaScript plugin that adds some HTML5 canvas magic to your favicon. With just a wee bit of code, we can make some really cool effects.
41 lines (37 loc) • 804 B
JavaScript
/**
*
* favoritos
*
* @version 1.1.0
* @author Alexey Istomin
* @email: webistomin@gmail.com
* @license: MIT
*
**/
import { FAVORITOS_SHAPES } from '../types/options/shapes.js';
import { FAVORITOS_POSITIONS } from '../types/options/positions.js';
var DEFAULT_OPTIONS = {
icon: {
iconSelector: 'link[rel*="icon"]',
backgroundColor: '#d21f3c',
shape: FAVORITOS_SHAPES.CIRCLE,
lineWidth: 4,
width: 32,
height: 32
},
badge: {
fontSize: 18,
fontFamily: 'Helvetica, Arial, sans-serif',
backgroundColor: '#d21f3c',
color: '#ffffff',
position: FAVORITOS_POSITIONS.BOTTOM_RIGHT,
shape: FAVORITOS_SHAPES.CIRCLE,
minWidth: 22,
minHeight: 22
},
debug: {
enabled: false,
debugSelector: '#favoritos-debug'
}
};
export { DEFAULT_OPTIONS };