Minggu, 30 November 2008
Traveler IQ Quiz Game
OK... Did you ever wish that you live your job or whatever you do and go for a trip around the world. Get into the exquisite hotels around the world. From East to West, From North to South.
Well Fella ! before that lets check how much you about the world. Turn on your imagination and bring the world map in front of you. Then try and imagine these places.
1. Grand Canyon - USA
2. Great Barrier Reaf - Australia
3. Florida - USA
4. The South Island - New Zealand
5. Cape Town - South Africa
6. Golden Temple - India
7. Las Vegas - USA
8. Sydney - Australia
9. New York - USA
10. Taj Mahal - India
11. Canadian Rockies - Canada
12. Uluru - Australia
13. Chichen Itza -Mexico
14. Macchu Pichu - Peru
15. Niagara Falls - Canada/USA
16. Petra - Jordan
17. The Pyramids - Egypt
18. Venice - Italy
19. Maldives - Maldives
20. Great Wall - China
21. Victoria Falls - Zambia/Zimbabwe
22. Hongkong - Hongkong
23. Yosemite National Park - USA
24. Hawaii - USA
25. Auckland - New Zealand
26. Iguassu Falls - Argentina/Brazil
27. Paris - France
28. Alaska - USA
29. Angkor Wat - Cambodia
30. Himalayas - India/Nepal/Tibet
31. Rio de Janerio - Brazil
32. Masai Mara - Kenya
33. Galapagos Island - Ecuador
34. Luxor - Egypt
35. Rome - Italy
36. San Fransisco - USA
37. Barcelona - Spain
38. Dubai - Arab Emirates
39. Singapore - Singapore
40. La Digue - Seychelles
So how many could you picture, How many could you locate? Well, for most of you when you were thinking of a world trip you were imagining of those luxury hotels, historic places, exotic beaches, and what not.
Meaning you must have forgotten the aim of this blog. To test and challenge your IQ. Let me help your imagination and take you to a wonderful Game/Quiz by TravelPod. This will brush up your GK and IQ and get you ready for that trip.
So here is the link for The Traveler IQ Challenge™. This game is also embedded below.
If you face any display problem please play at the link given above.
Checkout wikipedia for the places you know, you know but can't remember :). So when you have completed the challenge and got your Map IQ high, You can start packing your travel bags. Until then Happy Quizzing.
Jumat, 28 November 2008
Display HTML / JavaScript code in Blogger - How to
Lets have a look first at the box I am talking about.
So the question remains, how to get it?
Easy... just follow this steps.
As blogger wont take html code as it is... meaning you will need to convert it into escaped code. For that get the code you need to any text editor. Then replace all the < signs with < and all > signs with >. Now copy this escapped code to your blog. There is another easy way to do it. Go to this site -> Text -> HTML Entities Encoder. There are two boxes, copy your code into first box. The escaped code will be generated in the next one. Easy isn't it.
Now how to add those boxes. There are a lot of ways to do it. I will show you the one that I used. First we will make a css class in our blogger template. Use this for Basics of Blogger template. In the css section add this code.
.postCode{
background:lightyellow none repeat scroll 0 0;
border:1px inset orange;
height:150px;
margin:10px;
overflow:auto;
padding:6px;
text-align:left;
}
You can change the background/border colors height etc to match your needs. Now, we will use this class with a <PRE> tag to format our code in those boxes. So enclose your escapped code in this manner.
<pre class="postCode">
YOUR CODE
</pre>
Tadaa! You are done.
PIN google adsense
Kamis, 27 November 2008
Menambah Icon Di Sidebar Link
1. Macam biasa Loggin ke Blogger => Layout => Edit HTML. Cari kode dibawah.
.sidebar ul {
list-style:none;
margin:0 0 0;
padding:0 0 0;
}
.sidebar li {
margin:0;
padding:0 0 .25em 15px;
text-indent:-15px;
line-height:1.5em;
}
2. Dah jumpa?? Tukar kode diatas seperti dibawah.
.sidebar ul {
list-style:none;
margin:0 0 1.25em;
padding:0 0px;
}
.sidebar ul li {
background:url("Alamat Gambar Disini") no-repeat 2px .25em;
margin:0;
padding:0 0 3px 16px;
margin-bottom:3px;
border-bottom:1px dotted $bordercolor;
line-height:1.4em;
}
3. Gantikan tulisan berwarna merah dengan URL gambar/icon Antum. Tulisan hijau adalah border/garisan dibawah link.. Kalau Antum xnak kasi buang saja.
Ok Done...
How to add Digg to Blogger - Explained.
After experimenting with my Blog template I came across this way to do it.
Things you should require/know :-
- A Digg Account (optional)
- A Blogger Account
- Basics of XML/HTML/CSS/Java Script
- Ctrl+C / Ctrl+V :)
First login into your blogger account. Go to the Layout tab and click on Edit HTML.
If you want you can make a backup of your existing template by clicking on "Download full template" [ If your confident skip this step ]
Understanding the Blogger Template
The basic structure of template has various sections defined. At top there are some variables defined. Which can be changed to change the color layout etc of the Blog.
After the variables the CSS definitions are given. You can edit the different classes to change the blog to your taste.
Now in the body tag you will find all the sections and div defined. Complete blog lies in the outer-wrapper div. And in it you will have the header-wrapper then content-wrapper and lastly footer-wrapper. The content-wrapper will contain the main and the sidebar wrappers.
In them you will have <b:section> and <b:widget> tags defined. So this basic template tells all the widgets that are placed on your page and their position as per the wrappers.
Example code:
<div id='main-wrapper'>
<b:section class='main' id='main' showaddelement='no'>
<b:widget id='Blog1' locked='true' title='Blog Posts' type='Blog'/>
</b:section>
</div>
<div id='sidebar-wrapper'>
<b:section class='sidebar' id='sidebar' preferred='yes'>
<b:widget id='BlogArchive1' locked='false' title='Blog Archive' type='BlogArchive'/>
<b:widget id='HTML1' locked='false' title='' type='HTML'/>
<b:widget id='Label1' locked='false' title='Labels' type='Label'/>
</b:section>
</div>
Now the widget tag... i.e., <b:widgets>
This above basic template just gives you a method for understanding the layout, But to understand how to put the automated url Digg button you will have to understand the code in this widget. So go ahead and click the checkbox marked as "Expand Widget Templates". This will expand the <b:widgets> tags and show you how the widget is implemented in it.
Each widget when expanded will have many includables <b:includable>. Each of this includable will have an id.
Example code:
<b:includable id='flat' var='data'>
<ul>
<b:loop values='data:data' var='i'>
<li class='archivedate'>
<a expr:href='data:i.url'><data:i.name/></a> (<data:i.post-count/>)
</li>
</b:loop>
</ul>
</b:includable>
<b:includable id='menu' var='data'>
<select expr:id='data:widget.instanceId + "_ArchiveMenu"'>
<option value=''><data:title/></option>
<b:loop values='data:data' var='i'>
<option expr:value='data:i.url'><data:i.name/> (<data:i.post-count/>)</option>
</b:loop>
</select>
</b:includable>
So as seen in this code there are two includables. we are interested in the includables having the id as post i.e.,
<b:includable id='post' var='post'>
So then in this includable we need to add our digg code. This blogger template defines and provides access to its data object. For e.g., <data:post.url/> signifies the url of the Blog post. It is the permalink of each blog entry. The digg widget button provided by Digg needs the post url. So this will generate it automatically for us. Now the code that I have used on to show the digg button is pasted in the includable as shown. You can place it and style it as you like.
Basically you will need to copy from the Digg Box start comment to Dig Box End comment. Copy and paste it in your blog and enjoy the easy Digg Button.
<b:includable id='post' var='post'>
<div class='post hentry'>
<a expr:name='data:post.id'/>
<b:if cond='data:post.title'>
<h3 class='post-title entry-title'>
<b:if cond='data:post.link'>
<a expr:href='data:post.link'><data:post.title/></a>
<b:else/>
<b:if cond='data:post.url'>
<a expr:href='data:post.url'><data:post.title/></a>
<b:else/>
<data:post.title/>
</b:if>
</b:if>
</h3>
</b:if>
<!--- ==== Digg Box Code by J start ==== -->
<div class='diggBox' style='margin: 4px; float: right;'>
<script type='text/javascript'>
digg_url = '<data:post.url/>';
</script>
<script src='http://digg.com/tools/diggthis.js' type='text/javascript'/>
</div>
<!-- == Digg Box code end ===-->
<div class='post-header-line-1'/>
<div class='post-body entry-content'>
<data:post.body/>
<div style='clear: both;'/> <!-- clear for photos floats -->
</div>
</div>
</b:includable>
Memasukkan Gambar Di Header
1. Loggin ke Blogger => Layout dan klik pada Edit Header



Alexa lagi, Alexa lagi
Rabu, 26 November 2008
Holiday Glass Frames From Zenni Optical
Selasa, 25 November 2008
Memasang Icon Back To Top

1. Loggin ke Blogger => Layout => Edit HTML, kemudian letakan kode dibawah ini diatas tag </body>
<a href='#' style='display:scroll;position: fixed; bottom:5px;right:5px;' title='Back to Top'><img src='http://i302.photobucket.com/albums/nn113/aburifaie/Jumptotop2.gif'/></a>
2. Simpan template dan lihat hasilnya..Kalau nak tukar icon gantikan text yang berwarna merah.
Sumber: o-om.com
Senin, 24 November 2008
Cara Memasukkan Link Di Postingan


<a href="http://almansuqie-tips.blogspot.com/"target=_"blank">AlmansuQie</a>
She broke up with Me !
I thought otherwise until it happened to me. Or did it?
Is it the end of the relationship? Or is it just a breakup and we will meet again. I hope we do.
We had a year long relationship. One Year and 7 days to be precise. Its the time when I came to this city in south. We had a really good time together for like 3-4 months then I kind of didn't pay that much attention, got busy with other stuff. But for the few weeks I had only my beautiful Elf in mind. The relationship was back strong. I was too happy with her for the few days. It was kind of a performance tweak. And then this huge blow, suddenly without even saying a good bye :(.
What happened? What went wrong?
Some might say that I cheated but thats not the thing. I paid equal attention to both of them, Gharwali and Baharwali. And I am sure they both knew that too. They had a great ActiveSync partnership working between them. I guess losing a baharwali is more difficult.
Well thats how they(my friends) say... my lappy T42 is my Gharwali for enjoying at home, and P3450 my Baharwali for outdoors. Yes, my HTC Touch P3450 codename Elf has left me, or I can say the Big Bastard world came between us.
So let me tell you the story, So that I dont have to tell it over and over again.
It happened today, the cloudy weather outside made a way into my life. I as usual woke up late and started for my office. On the way I found an auto and the guy asking 20 Rs extra on the metered fare. I argued and got it settled to 10 Rs. extra. Well everything was usual daily routine until now. When I got down at office, while taking out my wallet I kept the Elf on my bag beside me. Then there was this problem of change of 100Rs. I came out and asked a colleague who was passing by. He gave me the money I gave it to the Auto driver and took the bag and left. I pulled the bag from the handle without looking so he mobile dropped over there. I went upstairs and realised, started calling the number nobody picked it, then somebody started rejecting the call and then switched it off. Well I and you kinda knew this was going to happen.
Well rest you know what I had to do, called customer care barred outgoing calls. Went to customer care office got a duplicate SIM card. Went to police station with the IMEI number filed the complaint.
Now I seriously hope that the good guys of the Police Dept find her out. Otherwise, I am stuck here with a company provided Nokia 1100, Oh my god !!
Well for those who dont know HTC Touch product code name is ELF. If properly tweaked she runs like hell :). Wish the breakup gets over and we are back together. Hope you add a prayer for me.
Domize.com pengganti who.is
Minggu, 23 November 2008
Kotak Komentar Pada Setiap Postingan
1. Login ke draft.blogger.com. Mesti pelik kan? draft.blogger ini lebih kurang macam blogger.com jugak la, fungsi yang sama cuma ada beza sikit je.
2. Pilih halaman Settings kemudian Comments. Tandakan pada kotak (Embedded below post)

4. Untuk lihat hasilnya cuba klik mana2 tajuk postingan Antum. Jika kotak komen sudah ada di dibawah posting maka ianya berhasil dan cukup setakat ini. Bagi yang tidak berhasil, jangan risau, mungkin ada masalah dengan template Antum. Cuba cara dibawah.
5. Pilih Layout => Edit HTML". Tandakan pada kotak "Expand widget templates" dan cari kode dibawah.
<p class='comment-footer'> <b:if cond='data:post.allowComments'> <a expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><data:postCommentMsg/></a> </b:if> </p>
6. Gantikan dengan kode dibawah.
<p class='comment-footer'> <b:if cond='data:post.embedCommentForm'> <b:include data='post' name='comment-form'/> <b:else/> <b:if cond='data:post.allowComments'> <a expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><data:postCommentMsg/></a> </b:if> </b:if> </p>
Selamat Mencuba!!
Sabtu, 22 November 2008
The Cutest Blog On The Block




Cara Membuat Scrolling Links
<marquee direction="up" scrollamount="2" height="100px" bgcolor="#ffffcc">
<ul type="circle">
<li><a href="http://almansuqie.blogspot.com/" target="_blank">AlmansuQie</a></li>
<li><a href="http://ummu-rifaie.blogspot.com/" target="_blank">ummurifaie</a></li>
<li><a href="http://alhuzaifie.blogspot.com/" target="_blank">Huzaifah</a></li>
</ul>
</marquee>
Mau dollar??
Jumat, 21 November 2008
Cara Menghilangkan Navbar

Kedudukannya adalah di bahagian paling atas blog. Kegunaanya pula adalah untuk Sign In/Out, Customize blog, dll.
Kembali kepada tajuk, sesetengah orang rasa kurang sedap mata memandang bila Navbar ni ade di blog mereka dan ingin menghilangkannya. Ana dengar orang kata kalau hilangkan Navbar ini kita telah melanggar Term of Service (TOS) dari Blogger.com? Tapi Ana rasa tidak, sebab kalau kita tengok template-template baru yang disedikan oleh blogger2 yang pakar semuanya tanpa Navbar. Setakat ini, banyak blogger yang telah menghilangkan Navbar mereka dan tidak juga mendapat teguran dari blogger. Maknanya, bolehla kan.
Ok disini Ana akan bagi dua cara..Pertama untuk menghilangkan terus Navbar dan yang kedua adalah dengan membuat "Auto Hide".
1. Loggin ke Blogger => Layout => Edit HTML.
2. Untuk menghilangkannya tambahkan kode berikut.
#navbar-iframe {
height:0px;
visibility:hidden;
display:none;
}
3. Untuk membuat "Auto Hide" tambahkan kode berikut.
#navbar-iframe{opacity:0.0;filter:alpha(Opacity=0)}
#navbar-iframe:hover{opacity:1.0;filter:alpha(Opacity=100, FinishedOpacity=100)}
<b:skin><
First, create a new image about 600x600 pixels (or whatever size is appropriate for the image you plan to create). If you haven't already got a shape that you want to apply this effect to, now's the time to make something. The shape in the example is simply made up of 2 circles blended together. Once you have your shape, fill it with this shade of gray: #E6E6E6. Keep your shape on its own layer and make sure you have nothing selected (press CTRL+D).

Most of the steps from this point on will be using Layer Styles, which are available in Adobe Photoshop 6.0 and later versions. Once you've created this layer style, you can save it and use it instantly whenever you want, without the hassle of re-entering all the settings every time you need this effect.
With your shape's layer selected, go to Layer » Layer Styles » Inner Glow, and match up your settings with these: Inner Glow
This gives our shape its first hint of a bevel.

Next click on Gradient Overlay and dial in the following settings: Gradient Overlay
To add a final touch to the smooth metal, click on Satin and match these settings: Satin Settings
Your smooth metal style is complete at this point, though you may wish to add in an optional drop shadow.
But wait... do NOT click OK yet. Remember, we want to add this layer style to your arsenal so you can call upon it when ever you need it.
Click at the top where it says Styles

Now click the "New Style" button and give your style a name such as "Smooth Metal", then click OK. You should then save your styles by clicking the arrow icon to the left and choosing "Save Styles" from the list.

To make the orb appear as though it's inset into the metal panel simply complete the following steps...
Place the orb onto your image, and create a new layer UNDERNEATH the layers containing your orb but ABOVE your smooth metal shape.
Now select the ','black')" onmouseout="hidetooltip()">elliptical marquee tool, and draw a selection so that it's just a little bigger than the original orb. To make this easier, place your mouse in the center of your orb, and hold SHIFT and ALT at the same time and drag your selection. Now, select your ','black')" onmouseout="hidetooltip()">gradient tool, and use the following settings:

Drag from top to bottom over your selection to create the inset effect. When done press CTRL+D to deselect.



Kamis, 13 November 2008
Membuat Scrolling Text di Browser
Ramai kengkawan yang tanya buat macam mana tu?? Ana pun tak ingat ambil dari mana, tapi caranya amat mudah.
1. Login ke blogger kemudian ke menu Layout => Edit HTML
2. Cari kode ini.
<title><data:blog.pageTitle/></title>
3. Ganti kode diatas dengan
<b:include data='blog' name='all-head-content'/>
<script language='JavaScript'>
var txt="<data:blog.pageTitle/>";
var kecepatan=100;var segarkan=null;function bergerak() { document.title=txt;
txt=txt.substring(1,txt.length)+txt.charAt(0);
segarkan=setTimeout("bergerak()",kecepatan);}bergerak();
</script>
Siap!! text yang berwarna merah diatas adalah merupakan kecepatan pergerakanya jika Antum tambah angkanya maka pergerakanya akan lambat dan jika mengurangi angkanya maka pergerakanya akan semakin cepat.
Membuat Baca Selanjutnya
1. Loggin ke Blogger=>"Layout=>Edit Html". Jangan lupa tanda pada kotak "Expand Widget".
2. Cari kode di bawah ini:
</head>
3.Tambahkan kode ini di atasnya :
<script type='text/javascript' src='http://www.geocities.com/almansuqie08/bacaselanjutnya.js' />
4. Seterusnya cari kod ini <div class='post-header-line-1'/>. Dibawahnya akan ada kod seperti ini.
<div class='post-body entry-content'>
5. Gantikannya dengan kod dibawah.
<div class='post-body entry-content' expr:id='"post-" + data:post.id'>
<b:if cond='data:blog.pageType == "item"'>
6. Kemudian dibawahnya ada kod ini.
<p><data:post.body/></p>
7. Tambah kod berikut tepat dibawahnya.
<b:else/>
<style>#fullpost {display:none;}</style>
<p><data:post.body/></p>
<span id='showlink'>
<p><a expr:onclick='"javascript:showFull(\"post-" + data:post.id + "\");"' href='javascript:void(0);'>[+/-] Selengkapnya...</a></p>
</span>
<span id='hidelink' style='display:none'>
<p><a expr:onclick='"javascript:hideFull(\"post-" + data:post.id + "\");"' href='javascript:void(0);'>[+/-] Ringkasan...</a></p>
</span>
<script type='text/javascript'>checkFull("post-" + "<data:post.id/>")</script>
</b:if>
8. Ok kita lihat keseluruhannya kodnya seperti ini.
<div class='post-header-line-1'/>
<div class='post-body entry-content' expr:id='"post-" + data:post.id'>
<b:if cond='data:blog.pageType == "item"'>
<p><data:post.body/></p>
<b:else/>
<style>#fullpost {display:none;}</style>
<p><data:post.body/></p>
<span id='showlink'>
<p><a expr:onclick='"javascript:showFull(\"post-" + data:post.id + "\");"' href='javascript:void(0);'>[+/-] ReadMore...</a></p>
</span>
<span id='hidelink' style='display:none'>
<p><a expr:onclick='"javascript:hideFull(\"post-" + data:post.id + "\");"' href='javascript:void(0);'>[+/-] Summary...</a></p>
</span>
<script type='text/javascript'>checkFull("post-" + "<data:post.id/>")</script>
</b:if>
9. Tulisan [+/-]ReadMore... dan [+/-]Summary... boleh digantikan mengikut selera Antum. Dah siap klik butang save.
Tambahan : Untuk meletakkan 'ReadMore' di sebelah kanan posting sila tambahkan kode dibawah sebelum kode ]]></b:skin>
#showlink {
font-size: 12px;
float: right;
margin-right: 20px;
margin-top: 20px;
font-weight: none;
}
#hidelink {
font-size: 12px;
float: right;
margin-right: 20px;
margin-top: 20px;
font-weight: none;
}
Dah siap save yer.. dan lihat hasilnya dengan membuat new post.
Contoh penulisan :
Penulisan bermula disini
<span id="fullpost">
Penulisan baca selanjutnya bermula disini
</span>
Jika Antum berminat untuk membuat baca selanjutnya setiap kali Antum posting, pergi ke "Setting=>Formatting=>Post Template" dan tambahkan kode ini kedalamnya..
<span id="fullpost">
</span>
Kode Warna
No. Warnar | Kod Warna | Ton Warna |
Black | #000000 | |
Grey0 | #150517 | |
Grey18 | #250517 | |
Grey21 | #2B1B17 | |
Grey23 | #302217 | |
Grey24 | #302226 | |
Grey25 | #342826 | |
Grey26 | #34282C | |
Grey27 | #382D2C | |
Grey28 | #3b3131 | |
Grey29 | #3E3535 | |
Grey30 | #413839 | |
Grey31 | #41383C | |
Grey32 | #463E3F | |
Grey34 | #4A4344 | |
Grey35 | #4C4646 | |
Grey36 | #4E4848 | |
Grey37 | #504A4B | |
Grey38 | #544E4F | |
Grey39 | #565051 | |
Grey40 | #595454 | |
Grey41 | #5C5858 | |
Grey42 | #5F5A59 | |
Grey43 | #625D5D | |
Grey44 | #646060 | |
Grey45 | #666362 | |
Grey46 | #696565 | |
Grey47 | #6D6968 | |
Grey48 | #6E6A6B | |
Grey49 | #726E6D | |
Grey50 | #747170 | |
Grey | #736F6E | |
Slate Grey4 | #616D7E | |
Slate Grey | #657383 | |
Light Steel Blue4 | #646D7E | |
Light Slate Grey | #6D7B8D | |
Cadet Blue4 | #4C787E | |
Dark Slate Grey4 | #4C7D7E | |
Thistle4 | #806D7E | |
Medium Slate Blue | #5E5A80 | |
Medium Purple4 | #4E387E | |
Midnight Blue | #151B54 | |
Dark Slate Blue | #2B3856 | |
Dark Slate Grey | #25383C | |
Dim Grey | #463E41 | |
Cornflower Blue | #151B8D | |
Royal Blue4 | #15317E | |
Slate Blue4 | #342D7E | |
Royal Blue | #2B60DE | |
Royal Blue1 | #306EFF | |
Royal Blue2 | #2B65EC | |
Royal Blue3 | #2554C7 | |
Deep Sky Blue | #3BB9FF | |
Deep Sky Blue2 | #38ACEC | |
Slate Blue | #357EC7 | |
Deep Sky Blue3 | #3090C7 | |
Deep Sky Blue4 | #25587E | |
Dodger Blue | #1589FF | |
Dodger Blue2 | #157DEC | |
Dodger Blue3 | #1569C7 | |
Dodger Blue4 | #153E7E | |
Steel Blue4 | #2B547E | |
Steel Blue | #4863A0 | |
Slate Blue2 | #6960EC | |
Violet | #8D38C9 | |
Medium Purple3 | #7A5DC7 | |
Medium Purple | #8467D7 | |
Medium Purple2 | #9172EC | |
Medium Purple1 | #9E7BFF | |
Light Steel Blue | #728FCE | |
Steel Blue3 | #488AC7 | |
Steel Blue2 | #56A5EC | |
Steel Blue1 | #5CB3FF | |
Sky Blue3 | #659EC7 | |
Sky Blue4 | #41627E | |
Slate Blue | #737CA1 | |
Slate Grey3 | #98AFC7 | |
Violet Red | #F6358A | |
Violet Red2 | #E4317F | |
Deep Pink | #F52887 | |
Deep Pink2 | #E4287C | |
Deep Pink3 | #C12267 | |
Deep Pink4 | #7D053F | |
Medium Violet Red | #CA226B | |
Violet Red3 | #C12869 | |
Firebrick | #800517 | |
Violet Red4 | #7D0541 | |
Maroon4 | #7D0552 | |
Maroon | #810541 | |
Maroon3 | #C12283 | |
Maroon2 | #E3319D | |
Maroon1 | #F535AA | |
Magenta | #FF00FF | |
Magenta1 | #F433FF | |
Magenta2 | #E238EC | |
Magenta3 | #C031C7 | |
Medium Orchid | #B048B5 | |
Medium Orchid1 | #D462FF | |
Medium Orchid2 | #C45AEC | |
Medium Orchid3 | #A74AC7 | |
Medium Orchid4 | #6A287E | |
Purple | #8E35EF | |
Purple1 | #893BFF | |
Purple2 | #7F38EC | |
Purple3 | #6C2DC7 | |
Purple4 | #461B7E | |
Dark Orchid4 | #571B7E | |
Dark Orchid | #7D1B7E | |
Dark Violet | #842DCE | |
Dark Orchid3 | #8B31C7 | |
Dark Orchid2 | #A23BEC | |
Dark Orchid1 | #B041FF | |
Plum4 | #7E587E | |
Pale Violet Red | #D16587 | |
Pale Violet Red1 | #F778A1 | |
Pale Violet Red2 | #E56E94 | |
Pale Violet Red3 | #C25A7C | |
Pale Violet Red4 | #7E354D | |
Plum | #B93B8F | |
Plum1 | #F9B7FF | |
Plum2 | #E6A9EC | |
Plum3 | #C38EC7 | |
Thistle | #D2B9D3 | |
Thistle3 | #C6AEC7 | |
Lavendar Blush2 | #EBDDE2 | |
Lavendar Blush3 | #C8BBBE | |
Thistle2 | #E9CFEC | |
Thistle1 | #FCDFFF | |
Lavendar | #E3E4FA | |
Lavendar Blush | #FDEEF4 | |
Light Steel Blue1 | #C6DEFF | |
Light Blue | #ADDFFF | |
Light Blue1 | #BDEDFF | |
Light Cyan | #E0FFFF | |
Slate Grey1 | #C2DFFF | |
Slate Grey2 | #B4CFEC | |
Light Steel Blue2 | #B7CEEC | |
Turquoise1 | #52F3FF | |
Cyan | #00FFFF | |
Cyan1 | #57FEFF | |
Cyan2 | #50EBEC | |
Turquoise2 | #4EE2EC | |
Medium Turquoise | #48CCCD | |
Turquoise | #43C6DB | |
Dark Slate Grey1 | #9AFEFF | |
Dark Slate Grey2 | #8EEBEC | |
Dark Slate Grey3 | #78C7C7 | |
Cyan3 | #46C7C7 | |
Turquoise3 | #43BFC7 | |
Cadet Blue3 | #77BFC7 | |
Pale Turquoise3 | #92C7C7 | |
Light Blue2 | #AFDCEC | |
Dark Turquoise | #3B9C9C | |
Cyan4 | #307D7E | |
Light Sea Green | #3EA99F | |
Light Sky Blue | #82CAFA | |
Light Sky Blue2 | #A0CFEC | |
Light Sky Blue3 | #87AFC7 | |
Sky Blue | #82CAFF | |
Sky Blue2 | #B0E2FF | |
Light Sky Blue4 | #566D7E | |
Sky Blue | #6698FF | |
Light Slate Blue | #736AFF | |
Light Cyan2 | #CFECEC | |
Light Cyan3 | #AFC7C7 | |
Light Cyan4 | #717D7D | |
Light Blue3 | #95B9C7 | |
Light Blue4 | #5E767E | |
Pale Turquoise4 | #5E7D7E | |
Dark Sea Green4 | #617C58 | |
Medium Aquamarine | #348781 | |
Medium Sea Green | #306754 | |
Sea Green | #4E8975 | |
Dark Green | #254117 | |
Sea Green4 | #387C44 | |
Forest Green | #4E9258 | |
Medium Forest Green | #347235 | |
Spring Green4 | #347C2C | |
Dark Olive Green4 | #667C26 | |
Chartreuse4 | #437C17 | |
Green4 | #347C17 | |
Medium Spring Green | #348017 | |
Spring Green | #4AA02C | |
Lime Green | #41A317 | |
Spring Green | #4AA02C | |
Dark Sea Green | #8BB381 | |
Dark Sea Green3 | #99C68E | |
Green3 | #4CC417 | |
Chartreuse3 | #6CC417 | |
Yellow Green | #52D017 | |
Spring Green3 | #4CC552 | |
Sea Green3 | #54C571 | |
Spring Green2 | #57E964 | |
Spring Green1 | #5EFB6E | |
Sea Green2 | #64E986 | |
Sea Green1 | #6AFB92 | |
Dark Sea Green2 | #B5EAAA | |
Dark Sea Green1 | #C3FDB8 | |
Green | #00FF00 | |
Lawn Green | #87F717 | |
Green1 | #5FFB17 | |
Green2 | #59E817 | |
Chartreuse2 | #7FE817 | |
Chartreuse | #8AFB17 | |
Green Yellow | #B1FB17 | |
Dark Olive Green1 | #CCFB5D | |
Dark Olive Green2 | #BCE954 | |
Dark Olive Green3 | #A0C544 | |
Yellow | #FFFF00 | |
Yellow1 | #FFFC17 | |
Khaki1 | #FFF380 | |
Khaki2 | #EDE275 | |
Goldenrod | #EDDA74 | |
Gold2 | #EAC117 | |
Gold1 | #FDD017 | |
Goldenrod1 | #FBB917 | |
Goldenrod2 | #E9AB17 | |
Gold | #D4A017 | |
Gold3 | #C7A317 | |
Goldenrod3 | #C68E17 | |
Dark Goldenrod | #AF7817 | |
Khaki | #ADA96E | |
Khaki3 | #C9BE62 | |
Khaki4 | #827839 | |
Dark Goldenrod1 | #FBB117 | |
Dark Goldenrod2 | #E8A317 | |
Dark Goldenrod3 | #C58917 | |
Sienna1 | #F87431 | |
Sienna2 | #E66C2C | |
Dark Orange | #F88017 | |
Dark Orange1 | #F87217 | |
Dark Orange2 | #E56717 | |
Dark Orange3 | #C35617 | |
Sienna3 | #C35817 | |
Sienna | #8A4117 | |
Sienna4 | #7E3517 | |
Indian Red4 | #7E2217 | |
Dark Orange3 | #7E3117 | |
Salmon4 | #7E3817 | |
Dark Goldenrod4 | #7F5217 | |
Gold4 | #806517 | |
Goldenrod4 | #805817 | |
Light Salmon4 | #7F462C | |
Chocolate | #C85A17 | |
Coral3 | #C34A2C | |
Coral2 | #E55B3C | |
Coral | #F76541 | |
Dark Salmon | #E18B6B | |
Salmon1 | #F88158 | |
Salmon2 | #E67451 | |
Salmon3 | #C36241 | |
Light Salmon3 | #C47451 | |
Light Salmon2 | #E78A61 | |
Light Salmon | #F9966B | |
Sandy Brown | #EE9A4D | |
Hot Pink | #F660AB | |
Hot Pink1 | #F665AB | |
Hot Pink2 | #E45E9D | |
Hot Pink3 | #C25283 | |
Hot Pink4 | #7D2252 | |
Light Coral | #E77471 | |
Indian Red1 | #F75D59 | |
Indian Red2 | #E55451 | |
Indian Red3 | #C24641 | |
Red | #FF0000 | |
Red1 | #F62217 | |
Red2 | #E41B17 | |
Firebrick1 | #F62817 | |
Firebrick2 | #E42217 | |
Firebrick3 | #C11B17 | |
Pink | #FAAFBE | |
Rosy Brown1 | #FBBBB9 | |
Rosy Brown2 | #E8ADAA | |
Pink2 | #E7A1B0 | |
Light Pink | #FAAFBA | |
Light Pink1 | #F9A7B0 | |
Light Pink2 | #E799A3 | |
Pink3 | #C48793 | |
Rosy Brown3 | #C5908E | |
Rosy Brown | #B38481 | |
Light Pink3 | #C48189 | |
Rosy Brown4 | #7F5A58 | |
Light Pink4 | #7F4E52 | |
Pink4 | #7F525D | |
Lavendar Blush4 | #817679 | |
Light Goldenrod4 | #817339 | |
Lemon Chiffon4 | #827B60 | |
Lemon Chiffon3 | #C9C299 | |
Light Goldenrod3 | #C8B560 | |
Light Golden2 | #ECD672 | |
Light Goldenrod | #ECD872 | |
Light Goldenrod1 | #FFE87C | |
Lemon Chiffon2 | #ECE5B6 | |
Lemon Chiffon | #FFF8C6 | |
Light Goldenrod Yellow | #FAF8CC |
source: Azmanlin