UNPKG

@qooxdoo/framework

Version:

The JS Framework for Coders

85 lines (69 loc) 1.86 kB
/* ************************************************************************ qooxdoo - the new era of web development http://qooxdoo.org Copyright: 2004-2011 1&1 Internet AG, Germany, http://www.1und1.de License: MIT: https://opensource.org/licenses/MIT See the LICENSE file in the project's top-level directory for details. Authors: * Martin Wittemann (martinwittemann) ************************************************************************* */ /* ************************************************************************ ************************************************************************* */ /** * The simple qooxdoo font theme. * * @asset(qx/decoration/Indigo/font/JosefinSlab-SemiBold.woff) * @asset(qx/decoration/Indigo/font/JosefinSlab-SemiBold.ttf) */ qx.Theme.define("qx.theme.indigo.Font", { fonts : { "default" : { size : 12, family : ["Lucida Grande", "DejaVu Sans", "Verdana", "sans-serif"], color: "font", lineHeight: 1.8 }, "bold" : { size : 12, family : ["Lucida Grande", "DejaVu Sans", "Verdana", "sans-serif"], bold : true, color: "font", lineHeight: 1.8 }, "headline" : { size : 22, family : ["serif"], sources: [ { family : "JosefinSlab", source: [ "qx/decoration/Indigo/font/JosefinSlab-SemiBold.woff", "qx/decoration/Indigo/font/JosefinSlab-SemiBold.ttf" ] } ] }, "small" : { size : 11, family : ["Lucida Grande", "DejaVu Sans", "Verdana", "sans-serif"], color: "font", lineHeight: 1.8 }, "monospace" : { size : 11, family : [ "DejaVu Sans Mono", "Courier New", "monospace" ], color: "font", lineHeight: 1.8 } } });