<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="https://dev1galaxy.org/extern.php?action=feed&amp;tid=634&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / Devuan color Palette]]></title>
		<link>https://dev1galaxy.org/viewtopic.php?id=634</link>
		<description><![CDATA[The most recent posts in Devuan color Palette.]]></description>
		<lastBuildDate>Sat, 27 May 2017 15:19:34 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: Devuan color Palette]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=1728#p1728</link>
			<description><![CDATA[<p>FANTASTIC!!&#160; Thanks so much for putting that together!</p>]]></description>
			<author><![CDATA[dummy@example.com (golinux)]]></author>
			<pubDate>Sat, 27 May 2017 15:19:34 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=1728#p1728</guid>
		</item>
		<item>
			<title><![CDATA[Re: Devuan color Palette]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=1723#p1723</link>
			<description><![CDATA[<p>update</p>]]></description>
			<author><![CDATA[dummy@example.com (pekman)]]></author>
			<pubDate>Sat, 27 May 2017 07:32:58 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=1723#p1723</guid>
		</item>
		<item>
			<title><![CDATA[Re: Devuan color Palette]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=1722#p1722</link>
			<description><![CDATA[<p>I work it, go rebuild palette, thanks for clarification.</p>]]></description>
			<author><![CDATA[dummy@example.com (pekman)]]></author>
			<pubDate>Sat, 27 May 2017 05:58:57 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=1722#p1722</guid>
		</item>
		<item>
			<title><![CDATA[Re: Devuan color Palette]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=1720#p1720</link>
			<description><![CDATA[<p>Nice thought to do that pekman! Someone was asking about the colors earlier today and I completely forgot about responding so this will come in handy.</p><p>Your palette is in the ballpark but several of those colors are not in the <strong><a href="https://git.devuan.org/devuan-editors/devuan-www/blob/beta.devuan.org/source/ui/css/skin/_theme-purpy.scss" rel="nofollow">purpy theme for the website</a></strong>.&#160; And several colors are missing like the orange link hover color #C2540D.&#160; I have copied the purpy theme css below so you can get all the correct colors.&#160; Note that the colors are subtle and nuanced at different locations of the site:</p><div class="codebox"><pre class="vscroll"><code>$color0:   #7B7691; // background
$color1:   #E8E7F3; // text

$c-body-bg:    #FFFFFF; 
$c-body-fg:    #424252; 

$c-a-link:     #9AA12D;
$c-a-hover:    #C2540D;
$c-a-visited:  #A185B9;

$c-code-bg:    #F3F1F2;

$c-about-bg:   #6F6A83;

$c-donate-bg:               #A1B067;
$c-donate-fg:               #E5EDB0;

$c-donate-bg-hover:         #E5EDB0;
$c-donate-fg-hover:         #D91C15;

$c-donate-icon-heart-hover: #D91C15;

$c-sticky-bar-bg:       #88839C;
$c-sticky-bar-fg:       #E8E7F3;
$c-sticky-bar-a-hover:  #E89A67;
$c-sticky-bar-a-hover:  #D7EA8E;

$c-sticky-bar-a-link:   #D2E292;
$c-sticky-bar-a-hover: #EBB795;

$c-find-a-link:    #CDDF86;
$c-find-a-hover:   #E9AF8A;

$c-next-a-link:         #B5D147;
$c-next-a-visited:      #A1B067;
$c-next-a-hover:        #E89A67;

body {
    background-color: $c-body-bg;
    color: $c-body-fg;
}

body&gt;header {
    background-color: $c-body-bg;
}

h1 {
  background: transparent url(/ui/img/rounded-purpy-square.png) 0 1rem no-repeat;
  background-size: 3.2rem 3.2rem;
  padding: 0.5rem 0.5rem 0.5rem 5rem;
}

a {
    font-weight: normal;

    &amp;:link {
        color: $c-a-link;
    }
    &amp;:visited {
        color: $c-a-visited;
    }
    &amp;:hover {
        color: $c-a-hover;
        text-decoration: underline;
    }
}

code { background-color: $c-code-bg;
	margin:0 .2rem 0 35px; ;
}

p&gt;code {padding:.2rem .5rem;
	margin:0 .2rem 0 0;
}

li&gt;code {padding:.2rem .5rem;
	margin:0 .2rem 0 0;
}

a&gt;code {padding:.2rem .5rem;
	margin:0 .2rem 0 0;
}

ul ul,ul ol,ol ol,ol ul{
	margin:1.5rem 0 1.5rem 3.5rem;
}

ol,ul{
	padding-left:5px
}

#about {
    background-color: $c-about-bg;
    color: #ffffff;
}

#banner {
    background-color: #6F6A83;
}

/* fixed header */
#sticky-bar {
    background-color: $c-sticky-bar-bg;
    color: $color1;

    a {
        color: $c-sticky-bar-a-link;
        &amp;:hover {
            color: $c-sticky-bar-a-hover;
        }
    }

}

/* footer */
#find {
    background-color: $color0;
    color: $color1;

    a {
        &amp;:link, &amp;:visited {
            color: $c-find-a-link;
        }
        &amp;:hover {
            color: $c-find-a-hover;
        }
    }

}

/* donate button */
.button.button-primary,
#sticky-bar .button.button-primary,
#find .button.button-primary {
    background-color: $c-donate-bg;
    border-color: $c-donate-bg;
    color: $c-donate-fg;
    padding: 0 2rem;

    &amp;:focus,
    &amp;:hover {
        background-color: $c-donate-bg-hover;
        border-color: $c-donate-bg-hover;
        color: $c-donate-fg-hover;
        text-decoration: none;
        font-weight: 600;

        .icon-heart {
            color: $c-donate-icon-heart-hover;
        }
    }
}

/* download button */
.button.button-dl,#sticky-bar .button.button-dl,#find .button.button-dl{
	background-color:#C5D27D;
	border-color:#C5D27D;
	color:#662984;
	padding:.25rem 2rem 0
}

/* download button hover */
.button.button-dl:focus,.button.button-dl:hover,#sticky-bar .button.button-dl:focus,#sticky-bar .button.button-dl:hover,#find .button.button-dl:focus,#find .button.button-dl:hover{
	background-color:#E5EDB0;
	border-color:#E5EDB0;
	color:#662984;
	text-decoration:none;
	font-weight:600
}

/* download button icon */
.button.button-dl:focus .icon-download,.button.button-dl:hover .icon-download,#sticky-bar .button.button-dl:focus .icon-download,#sticky-bar .button.button-dl:hover .icon-download,#find .button.button-dl:focus .icon-download,#find .button.button-dl:hover .icon-download{
	color:#662984
}</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (golinux)]]></author>
			<pubDate>Sat, 27 May 2017 04:09:00 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=1720#p1720</guid>
		</item>
		<item>
			<title><![CDATA[Devuan color Palette]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=1718#p1718</link>
			<description><![CDATA[<p>Hey all.</p><p>Seen&#039;s Devuan sites, i capture this colors and compile this palette.</p><p><span class="postimg"><img src="https://notabug.org/Devuan/Designe/raw/master/devuan-palette-color.png" alt="Devuan palette color" /></span></p><p>Cheer&#039;s</p>]]></description>
			<author><![CDATA[dummy@example.com (pekman)]]></author>
			<pubDate>Sat, 27 May 2017 01:23:41 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=1718#p1718</guid>
		</item>
	</channel>
</rss>
